59

インタラクティブなリベース中に 2 つのマージ コミットをまとめて押しつぶす簡単なソリューションが必要でした。

私のリポジトリは次のようになります。

   X --- Y --------- M1 -------- M2 (my-feature)
  /                 /           /
 /                 /           /
a --- b --- c --- d --- e --- f (stable)

つまり、my-feature最近 2 回マージされたブランチがあり、間に実際のコミットはありません。my-featureブランチは独自の公開ブランチであるため、ブランチをリベースするだけではなく、最後の 2 つのマージ コミットを 1 つにまとめたいだけです (これらのコミットはまだ公開していません)。

   X --- Y ---- M (my-feature)
  /            /
 /            /
a --- ... -- f (stable)

私は試した:

git rebase -p -i M1^

しかし、私は得ました:

Refusing to squash a merge: M2

私が最終的にやったことは次のとおりです。

git checkout my-feature
git reset --soft HEAD^  # remove the last commit (M2) but keep the changes in the index
git commit -m toto      # redo the commit M2, this time it is not a merge commit
git rebase -p -i M1^    # do the rebase and squash the last commit
git diff M2 HEAD        # test the commits are the same

現在、新しいマージ コミットはマージ コミットとは見なされなくなりました (最初の親のみが保持されます)。そう:

git reset --soft HEAD^               # get ready to modify the commit
git stash                            # put away the index
git merge -s ours --no-commit stable # regenerate merge information (the second parent)
git stash apply                      # get the index back with the real merge in it
git commit -a                        # commit your merge
git diff M2 HEAD                     # test that you have the same commit again

しかし、コミットが多い場合、これは複雑になる可能性があります。より良い解決策はありますか? ありがとう。

ミルドレッド

4

6 に答える 6

56

これは古いトピックですが、似たような情報を探しているときに偶然見つけました。

Subtree octopus mergeで説明されているものと同様のトリックは、このタイプの問題に対する本当に良い解決策です。

git checkout my-feature
git reset --soft Y
git rev-parse f > .git/MERGE_HEAD
git commit

これにより、my-featureの先端にあるインデックスが取得され、それを使用して、2番目の親として「f」を使用してYから新しいコミットが作成されます。結果は、M1を実行したことがない場合と同じですが、M2を実行することになります。

于 2010-11-09T20:51:12.877 に答える
8

最後の2つのマージコミットを公開していない場合は、リセットと単純なマージを行うことができます。

git reset --hard Y
git merge stable
于 2009-11-12T22:34:37.577 に答える
1

上記の方法はどれも、最近のgitバージョンでは機能しません。私の場合、次のことがトリックを行いました。

git reset --soft Y
git reset --hard $(git commit-tree $(git write-tree) -p HEAD -p stable < commit_msg)

ただし、最初にコミットメッセージをファイルcommit_msgに書き込む必要があります。

于 2012-03-09T05:39:57.580 に答える