如何撤消“git提交-修改”完成而不是“git提交”

我不小心修改了我以前的提交。提交应该是单独的,以保存我对特定文件所做更改的历史记录。

有没有办法撤消最后一次提交?如果我做了类似git reset --hard HEAD^的事情,第一次提交也会撤消。

(我还没有推送到任何远程目录)

533533 次浏览

您可以随时拆分提交,手册

  • 使用git rebase-i提交^启动交互式rebase,其中提交是您要拆分的提交。事实上,任何提交范围都可以,只要它包含该提交。
  • 标记您要拆分的提交与操作“编辑”。
  • 在编辑该提交时,执行git重置HEAD^。效果是HEAD重绕1,索引也随之而来。但是,工作树保持不变。
  • 现在将您希望在第一次提交中拥有的更改添加到索引中。您可以使用git add(可能是交互式的)或git-gui(或两者兼而有之)来执行此操作。
  • 使用现在合适的任何提交消息提交当前索引。
  • 重复最后两个步骤,直到你的工作树是干净的。
  • 使用git rebase继续rebase-继续。

使用参考日志

git branch fixing-things HEAD@{1}git reset fixing-things

然后你应该有你所有以前修改的变化只有在您的工作副本并可以再次提交

查看先前索引类型git reflog的完整列表

您需要做的是创建一个新的提交,其详细信息与当前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.)# The -C option takes the given commit and reuses the log message and# authorship information.git commit -C HEAD@{1}
  1. 签出到最后一次提交的临时分支

    git branch temp HEAD@{1}

  2. 重置上次提交

    git reset temp

  3. 现在,您将拥有您提交的所有文件以及之前的提交。检查所有文件的状态。

    git status

  4. 从git阶段重置您的提交文件。

    git reset myfile1.js(以此类推)

  5. 重新提交

    git commit -C HEAD@{1}

  6. 将您的文件添加并提交到新提交中。

通过以下方式查找修改后的提交:

git log --reflog

注意:为了清晰起见,您可以添加--patch来查看提交的主体。与git reflog相同。

然后通过以下方式将HEAD重置为之前的任何提交:

git reset SHA1 --hard

注意:用你真正的提交哈希替换SHA1。还要注意,这个命令会丢失所有未提交的更改,所以你可以把它们藏起来。或者,用--soft代替,保留最新的更改,然后提交。

然后选择你需要的另一个提交:

git cherry-pick SHA1

也许可以使用git reflog在修改之前和修改之后获得两个提交。

然后使用git diff before_commit_id after_commit_id > d.diff来获取修改前和修改后的差异。

接下来使用git checkout before_commit_id返回到提交之前

最后使用git apply d.diff来应用您所做的实际更改。

这解决了我的问题。

可能值得注意的是,如果您仍然在编辑器中使用提交消息,您可以删除提交消息,它将中止git commit --amend命令。

几乎晚了9年,但没有看到这种变化提到完成同样的事情(这是其中一些的组合,类似于顶部答案(https://stackoverflow.com/a/1459264/4642530)。

搜索分支上所有分离的头部

git reflog show origin/BRANCH_NAME --date=relative

然后找到SHA1哈希

重置为旧SHA1

git reset --hard SHA1

然后把它推回去。

git push origin BRANCH_NAME

成交

这将使您完全恢复到旧的提交。

(包括先前覆盖的分离提交头的日期)

你可以在下面撤消你的git commit —amend

  1. git reset --soft HEAD^
  2. git checkout files_from_old_commit_on_branch
  3. git pull origin your_branch_name

====================================

现在您的更改与之前相同。所以您完成了git commit —amend的撤消

现在您可以执行git push origin <your_branch_name>,以推送到分支。

如果您已将提交推送到远程,然后错误地修改了对该提交的更改,这将解决您的问题。发出git log以在提交之前找到SHA。(这假设远程名为源)。现在使用该SHA发出这些命令。

git reset --soft <SHA BEFORE THE AMMEND>#you now see all the changes in the commit and the amend undone
#save ALL the changes to the stashgit stash
git pull origin <your-branch> --ff-only#if you issue git log you can see that you have the commit you didn't want to amend
git stash pop#git status reveals only the changes you incorrectly amended
#now you can create your new unamended commit

简单的解决方案解决方案工作给定:如果您的HEAD提交与远程提交同步。

  • 在本地工作区中再创建一个分支,并使其与远程分支保持同步。
  • Cherry从分支中选择HEAD提交(其中git提交-修改)执行到新创建的分支。

樱桃选择的提交将只包含您的最新更改,而不是旧更改。您现在可以重命名此提交。

使用HEAD@{1}的这些答案都不适合我,所以这是我的解决方案:

git reflog

d0c9f22 HEAD@{0}: commit (amend): [Feature] - ABC Commit Descriptionc296452 HEAD@{1}: commit: [Feature] - ABC Commit Description

git reset --soft c296452

您的暂存环境现在将包含您意外与c296452提交合并的所有更改。