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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
| git config --global user.name '' git config --global user.email ''
git remote -v
git remote rm origin
git remote add origin 远程仓库的地址
git push origin master
git push origin master:master
git push origin
git push
git branch -[d|D] [分支名称]
git status
git log
git log --oneline -3
git add file1 file2
git add .
git add -u
git add -p
git commit -m '注释'
git pull
git stash
git stash pop
git stash apply
git stash list
git stash clear
git remote
git remote show origin
git branch -r
git checkout -b test origin/test
git checkout 远程分支的名称
git branch -d 分支名称
git branch -D 分支名称
git push origin --delete 分支名称
git cat-file -t id
git cat-file -p id
git merge [分支名称] --allow-unrelated-histories
git push -f --set-upstream origin master:master
|