git經常使用命令: git config --global user.name "Your Name" git config --global user.email "email@example.com" mkdir learngit cd learngit pwd git init git add test.txt git commit -m "xx"git checkout test.txt git
git status git loggit reset --hard commit_id github
git reflog app
git remote add origin git@github.com:fzxblgong/learngit.git git push -u origin master git config --global core.autocrlf false git branch git branch <name> git checkout <name> git checkout -b <name> git merge <name> git merge --no-ff -m "merge with no-ff" dev git branch -d <name> git stash git stash list git stash pop/apply git remote -v git branch --set-upstream branch-name origin/branch-name git pull git tag v0.1 git tag -d v0.1 git push origin v1.0 git config --global color.ui true --global參數是全局參數,也就是這些命令在這臺電腦的全部Git倉庫下都有用。