最近在网上搜索git revert 和git reset 的用法对比,实际操作的时候,发现根本行不通,自己摸索了下,记录下这篇文章。
git revert:回退某次提交,并重新提交,相当于代码恢复修改前,但是服务器上有两次提交log;
git reset:回退某次提交,同时回退修改log,但是修改内容回退到本地暂存区,由用户确定丢弃(checkout)或者重新提交。
假设当前有3个commit,git log如下:
commit3: add test3.c
commit2: add test2.c
commit1: add test1.c
执行 git revert HEAD~1 之后,会提示提交信息,提交后git log如下:
commit4: Reverts “test2.c”
commit3: test3.c
commit2: test2.c
commit1: test1.c
执行完后,test2.c被删除了,运行git status,无任何变化。
执行 git reset HEAD~1之后,再次看git log,如下:
commit2: test2.c
commit1: test1.c
执行完后,commit3被删除了;但是test3.c还在本地缓存区,运行git status,可以看见提示test3.c可以用git add包含该文件。
若执行git reset --hard HEAD~1,log为:
commit2: test2.c
commit1: test1.c