-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitcmd
49 lines (48 loc) · 1.02 KB
/
gitcmd
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
git config --global user.name caogen
git config --global user.email [email protected]
git config --global core.editor vim
git config --global merge.tool vimdiff
git config --list
git init
git clone git://.....
git status
git add file
.gitignore
git diff
git diff --staged or --cached
git commit
git commit -m msg
git commit -a
git commit --amend
git rm file
git rm -f file
git rm --cached file
git log -p -2
git log --pretty=oneline
git log --pretty=format:"%h - %an ,%ar : %s"
git reset HEAD file,
git checkout -- file,
git remote -v
git remote add qjx https://github.com/QJX/gitlearn.git
git push -u qjx master
git fetch name
git remote rm name
git tag
git tag -l
git tag tagname
git tag -a/s tagname -m msg
git show tagname
git tag -v tagname
git push name tagname
git push name --tags
git config --global alias.unstage reset HEAD --
git branch
git branch -v
git branch --merge
git branch --no-merge
git barnch branchname
git branch -d/D branchname
git checkout branchname
git checkout -b branchname
git merge branchname
git mergetool