1、撤销最新的一次提交
#git reset --hard HEAD~1
#git push --force
2、修改最后一次提交
#git commit --amend
#git push --force
本文共 154 字,大约阅读时间需要 1 分钟。
1、撤销最新的一次提交
#git reset --hard HEAD~1
#git push --force
2、修改最后一次提交
#git commit --amend
#git push --force
转载于:https://my.oschina.net/linuxhunter/blog/709152