1

假设我有 3 个 git 提交:

  1. 在侧边栏提交更改
  2. 在页脚提交更改
  3. 提交对标头的更改

现在让我们假设我已经经历了精神觉醒并意识到我需要的唯一更改是在页眉和侧边栏上,页脚很好,不需要更改。

有没有可以执行以下操作的命令?

  • 合并提交#3 减去提交#2
  • 删除提交#2
  • 合并提交#3 加上提交#1

(或任何其他使 commit#2 从未发生过的方法)。

4

3 回答 3

2

交互式 rebase 允许您修改、重新排列、合并提交、更改消息等:

git rebase --interactive

引用帮助:

# Commands:
#  p, pick = use commit
#  r, reword = use commit, but edit the commit message
#  e, edit = use commit, but stop for amending
#  s, squash = use commit, but meld into previous commit
#  f, fixup = like "squash", but discard this commit's log message
#  x, exec = run command (the rest of the line) using shell
#
# If you remove a line here THAT COMMIT WILL BE LOST.
# However, if you remove everything, the rebase will be aborted.
#

丢失提交是您想要的。

于 2013-02-02T19:52:44.553 回答
1

您始终可以使用git-revert.

给定一个或多个现有提交,还原相关补丁引入的更改,并记录一些记录它们的新提交。这要求您的工作树是干净的(不修改 HEAD 提交)。

注意:git revert用于记录一些新的提交,以扭转一些早期提交的效果(通常只是一个错误的提交)。如果您想丢弃工作目录中所有未提交的更改,您应该看到git-reset(1),尤其是该--hard选项。如果您想像在另一个提交中一样提取特定文件,您应该看到git-checkout(1),特别是git checkout <commit> -- <filename> syntax. 请注意这些替代方案,因为它们都会丢弃工作目录中未提交的更改。

所以:

git revert <commit-id-of-footer-changes>
于 2013-02-02T19:43:51.940 回答
1

您可以使用cherry-pick合并您想要的提交,然后revert在页脚更改之前提交开发分支。

git checkout branch_to_merge_into
git cherry-pick commit#1 commit#3
于 2013-02-02T19:58:39.383 回答