mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-02-04 16:37:33 +01:00
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
|