mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2024-12-12 16:39:37 +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
|