在Git中恢复由SHA哈希提交?
我不清楚如何git revert
工作。 例如,我想回到第六个提交的提交,恢复中间提交的所有变化。
说它的SHA哈希是56e05fced214c44a37759efa2dfc25a65d8ae98d
。 那么为什么我不能这样做:
git revert 56e05fced214c44a37759efa2dfc25a65d8ae98d
?
如果你想在当前HEAD的顶部提交具有不同提交的确切状态,撤消所有的中间提交,那么你可以使用reset
来创build索引的正确状态来进行提交。
# Reset the index and working tree to the desired tree # Ensure you have no uncommitted changes that you want to keep git reset --hard 56e05fced # Move the branch pointer back to the previous HEAD git reset --soft HEAD@{1} git commit -m "Revert to 56e05fced"
git-revert所做的就是创build一个提交(commit),撤销在给定提交中所做的更改,创build一个提交,该提交是给定提交的反向(相反)。 因此
git revert <SHA-1>
应该和工作。
如果你想倒回到指定的提交,你可以这样做,因为这部分的历史还没有发布,你需要使用git-reset ,而不是git-revert:
git reset --hard <SHA-1>
(注意--hard
会让你在工作目录中丢失任何未提交的更改)。
补充笔记
顺便说一句,也许这并不明显,但是在任何文档说<commit>
或<commit-ish>
(或<object>
)的地方,您可以放置一个SHA-1标识符(完整或缩短)提交。
它恢复所述提交,即添加与其相反的提交。 如果你想签出一个更早的版本,你可以这样做:
git checkout 56e05fced214c44a37759efa2dfc25a65d8ae98d
回滚到特定提交的最佳方式是:
git reset --hard <commit-id>
然后:
git push <reponame> -f
如果你的修改已经被推送到一个公共的,共享的远程,并且你想要恢复HEAD
和<sha-id>
之间的所有提交,那么你可以把一个提交范围传递给git revert
,
git revert 56e05f..HEAD
它将恢复56e05f
和HEAD
之间的所有提交(不包括范围56e05f
, 56e05f
)。
更新:
这个答案比我的答案简单: 如何将Git存储库恢复到以前的提交?
原始答案
# Create a backup of master branch git branch backup_master # Point master to '56e05fce' and # make working directory the same with '56e05fce' git reset --hard 56e05fce # Point master back to 'backup_master' and # leave working directory the same with '56e05fce'. git reset --soft backup_master # Now working directory is the same '56e05fce' and # master points to the original revision. Then we create a commit. git commit -a -m "Revert to 56e05fce" # Delete unused branch git branch -d backup_master
这两个命令git reset --hard
和git reset --soft
在这里是魔术。 第一个改变工作目录,但也改变了头。 我们用第二个固定头。
这更容易理解:
git checkout 56e05fced -- . git add . git commit -m 'Revert to 56e05fced'
并certificate它的工作:
git diff 56e05fced
应该如此简单:
git reset --hard 56e05f
这会让你回到那个特定的时间点。
这可能工作:
git checkout 56e05f echo ref: refs/heads/master > .git/HEAD git commit