我不小心修改了我以前的提交。提交应该是独立的,以保留我对特定文件所做更改的历史记录。
有没有办法撤消最后一次提交?如果我执行git reset --hard HEAD^
,第一次提交也会撤消。
(我还没有推到任何远程目录)
您需要做的是创建一个新提交,其具有与当前HEAD
提交相同的详细信息,但父级作为HEAD
的先前版本。 git reset --soft
将移动分支指针,以便下一次提交发生在当前分支头现在的不同提交之上。
# Move the current head so that it's pointing at the old commit
# Leave the index intact for redoing the commit.
# HEAD@{1} gives you "the commit that HEAD pointed at before
# it was moved to where it currently points at". Note that this is
# different from HEAD~1, which gives you "the commit that is the
# parent node of the commit that HEAD is currently pointing to."
git reset --soft HEAD@{1}
# commit the current tree using the commit details of the previous
# HEAD commit. (Note that HEAD@{1} is pointing somewhere different from the
# previous command. It's now pointing at the erroneously amended commit.)
git commit -C HEAD@{1}
使用ref-log :
git branch fixing-things HEAD@{1}
git reset fixing-things
然后,您应该只在您的工作副本中进行所有先前修改的更改,并且可以再次提交
查看以前索引的完整列表,输入git reflog
通过以下方式查找修改的提交:
git log --reflog
注意:为了清楚起见,您可以添加--patch
以查看提交的正文。与git reflog
相同。
然后将 HEAD 重置为任何先前的提交,只需通过以下方式:
git reset SHA1 --hard
注意: 将 SHA1 替换为您的实际提交哈希。另请注意,此命令将丢失所有未提交的更改,因此您可以先将其存储。或者, 使用--soft
来保留最新的更改 ,然后提交它们。
然后樱桃挑选你需要的其他提交:
git cherry-pick SHA1