gap-get install git
gie config --system user.name Paris
sudu git config --system user.email 1546079656@qq.com
gie config --global user.name Paris
sudu git config --global user.email 1546079656@qq.com
git config core.editor vim
git config --list
git init
git status
git add file1 file2 ...
git rm --cached file
git commit -m “string”
git log
git diff file
git checkout file
git mv file path
git rm file
git reset --hard HEAD^/版本码
git reset --hard 版本码
git checkout -- file
git stash
git stash list
git stash apply stash@{1}
git stash pop
git stash drop stash@{1}
git stash clear
git branch
git branch dev_Paris
git checkout dev_Paris
git checkout -b dev_Paris
git merge dev_Paris
git branch -d dev_Prais
git branch -D dev_Paris
git log --graph
git tag v1.0
git tag v0.9 版本码
git tag
git show v0.9
git tag -a v1.1 -m “string” 版本码
git tag -d v0.9
git reset --hard v1.0
git init --bare project.git
git remote add origin tarena@127.0.0.1:/home/tarena/git/gitrepo/porjecet.git
git push -u origin master
git remote add origin tarena@127.0.0.1:/home/tarena/gitrepo/project.git
git clone tarena@127.0.0.1:/home/tarena/gitrepo/project.git
git push origin dev_Paris
git push origin --tags // 推送所有标签
git push origin v1.0 // 推送指定标签
git push -u origin :dev_Paris
git push origin --delete tag v1.0
git fetch origin
git pull
原文:https://www.cnblogs.com/ParisGabriel/p/9557506.html