2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

gitのcherrypickでマージコミットを選択する方法

Posted at

初めに

今回はgitでcherry-pickをする対象がマージコミットだったときの解決策を紹介します

本文

まず、マージコミットをcherry-pickしようとすると下記のようになります

git cherry-pick コミットID
error: commit コミットID is a merge but no -m option was given

-mオプションつけてねと言われるので下記のようにすると成功します

git cherry-pick -m 1 コミットID

-mの後の数字は1から選択可能でこの数字はgit logをしたときのmergeヘッダ表示順になります

最後に

下記の記事を参考に書かせていただきました。
https://qiita.com/awakia/items/5fad0c454ddc7b478ff1
自分の備忘録用ではありますが、どなたかのお役に立てれば幸いです

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?