我想在git中恢复特定的提交。不幸的是,我们的组织仍然使用CVS作为标准,所以当我提交回CVS时,多个git提交被归为一个。在这种情况下,我很想挑出原始的git提交,但这是不可能的。
是否存在类似于git add --patch
的方法,允许我有选择地编辑差异以决定提交的哪些部分还原?
答案 0 :(得分:194)
使用--no-commit
(-n
)选项git revert
,然后取消更改,然后使用git add --patch
:
$ git revert -n $bad_commit # Revert the commit, but don't commit the changes
$ git reset HEAD . # Unstage the changes
$ git add --patch . # Add whatever changes you want
$ git commit # Commit those changes
注意:使用git add --patch添加的文件是您要还原的文件,而不是您要保留的文件。
答案 1 :(得分:35)
我已成功使用以下内容。
首先恢复完整提交(将其置于索引中)但不提交。
git revert -n <sha1> # -n is short for --no-commit
然后以交互方式从索引中删除已还原的GOOD更改
git reset -p # -p is short for --patch
然后提交不良更改的反向差异
git commit -m "Partially revert <sha1>..."
最后,恢复的GOOD更改(已由reset命令取消暂停)仍在工作树中。他们需要清理。如果工作树中没有剩余其他未提交的更改,则可以通过
完成git reset --hard
答案 2 :(得分:4)
解决方案:
git revert --no-commit <commit hash>
git reset -p # every time choose 'y' if you want keep the change, otherwise choose 'n'
git commit -m "Revert ..."
git checkout -- . # Don't forget to use it.
答案 3 :(得分:4)
就个人而言,我更喜欢这个版本,它重复使用自动生成的提交消息,并允许用户在最终提交之前编辑并粘贴“Partially”一词。
# generate a revert commit
# note the hash printed to console on success
git revert --no-edit <hash to revert>
# undo that commit, but not its changes to the working tree
# (reset index to commit-before-last; that is, one graph entry up from HEAD)
git reset HEAD~1
# interactively add reversions
git add -p
# commit with pre-filled message
git commit -c <hash from revert commit, printed to console after first command>
# reset the rest of the current directory's working tree to match git
# this will reapply the excluded parts of the reversion to the working tree
# you may need to change the paths to be checked out
# be careful not to accidentally overwrite unsaved work
git checkout -- .
答案 4 :(得分:1)
你可以使用git-revert -n,然后使用add --patch来选择帅哥。
答案 5 :(得分:1)
另一个替代方案(如果您当前版本的文件与您尝试还原的版本相距不太远)是在提交之前立即获取提交的哈希值部分还原(来自git log
)。然后你的命令变为:
$ git checkout -p <hash_preceding_commit_to_revert> -- file/you/want/to/fix.ext
这确实会改变工作树中的文件,但不会创建任何提交,所以如果你真的填满了,你可以用git reset --hard -- file/you/want/to/fix.ext
重新开始。