Git
Base command
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
git --version
#Set username
git config --global user.name "Eric Nexus"
#Set User Email
git config --global user.email eric@eric.kz
#Show All Git config
git config --list
#Create New Repo
git init
#rename branch
git branch -m <name>
git status #show index
git add . #add all changes to index