mirror of https://gitlab.com/octtspacc/OcttKB
6 lines
219 B
Bash
6 lines
219 B
Bash
|
#!/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
|