Home Git
Post
Cancel

Git

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
This post is licensed under CC BY 4.0 by the author.
Contents