捡出一个新分支
git checkout -b
无head提交 合并到上一次提交
git commit --amend --no-edit
回滚
git log
git reset --soft 哈希码
git reset --hard 哈希码
拉取
git pull 网址 分支 --rebase
强制提交
git push -f
暂存
git stash
git stash pop
解决冲突
git pull
之后合并冲突
git config core.commentChar ';'
git rebase --continue
git push -f