-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-git-v1.sh
22 lines (19 loc) · 909 Bytes
/
setup-git-v1.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
set -e
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
# change into your name and email.
git init
git config --global user.name "myGitHubUser"
git config --global user.email "[email protected]"
#sudo git config --system core.editor nano
git config --system core.editor nano
git config --global credential.helper cache
git config --global credential.helper 'cache --timeout=25000'
git config --global push.default simple
echo "################################################################"
echo "################### T H E E N D ######################"
echo "################################################################"