#查看项目的分支们(包括本地和远程)
命令行 : git branch -a
#删除本地分支
命令行 : git branch -d <BranchName>
#删除远程分支
命令行 : git push origin --delete <BranchName>
强制更新远程分支
git push -f -u origin xjzhang
#修改commit
git commit --amend
#修改已经提交的过的 commit
git commit --amend
// ... edit you message
git push --force example-branch
#合并 commit
git reset --soft "HEAD~n"
(~n means ~1, ~2,...)
git commit --amend
git 删除远端分支 报错remote refs do not exist的解决方法
git fetch -p origin
git pull 报 unable to update local ref 错误
git gc --prune=now
git remote prune origin