-
Notifications
You must be signed in to change notification settings - Fork 90
/
setup-git-v5.sh
executable file
·49 lines (42 loc) · 1.89 KB
/
setup-git-v5.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash
#
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Erik Dubois
# Website : http://www.erikdubois.be
##################################################################################################################
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
# Problem solving commands
# Read before using it.
# https://www.atlassian.com/git/tutorials/undoing-changes/git-reset
# git reset --hard orgin/master
# ONLY if you are very sure and no coworkers are on your github.
# Command that have helped in the past
# Force git to overwrite local files on pull - no merge
# git fetch all
# git push --set-upstream origin master
# git reset --hard orgin/master
project=$(basename `pwd`)
echo "-----------------------------------------------------------------------------"
echo "this is project https://github.com/erikdubois/"$project
echo "-----------------------------------------------------------------------------"
git config --global pull.rebase false
git config --global user.name "Erik Dubois"
git config --global user.email "[email protected]"
sudo git config --system core.editor nano
#git config --global credential.helper cache
#git config --global credential.helper 'cache --timeout=32000'
git config --global push.default simple
git remote set-url origin [email protected]:erikdubois/$project
echo "Everything set"
echo
tput setaf 6
echo "######################################################"
echo "################### $(basename $0) done"
echo "######################################################"
tput sgr0
echo