#撤销修改 git reset HEAD git checkout . 只撤销部分文件 git reset HEAD file
#删除本地分支 git branch -D dev git branch --delete dev #命令删除远程分支 git push origin --delete branch 命令删除追踪分支 git branch --delete --remotes
git reset --hard d739d9cfc4 #如需更新再重新拉取