mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-01-24 19:51:15 +01:00
6 lines
219 B
Bash
Executable File
6 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
git config --global user.email "$GitUserEmail"
|
|
git config --global user.name "$GitUserName"
|
|
git config --global credential.helper store
|
|
echo "https://$GitUserName:$GitPassword@gitlab.com" > ~/.git-credentials
|