git clone http://
git status
git add .
git commit -m “xxx”
git push origin master
git pull --rebase
修正
git add .txt
git commit --amend
修改倒数第二个提交
git rebase -i HEAD^^
git add .txt
git commit --amend
git rebase --continue
撤销提交
git reset --hard HEAD^
撤销push
git revert HEAD^
切换branch
git checkout branch2
清空并保存改动
git stash
回到改动
git stash pop