94
38

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 3 years have passed since last update.

複数のコミットを一括でcherry-pickする

Last updated at Posted at 2020-04-14

複数の連続したコミットをcherry-pickしたい

コマンド

git cherry-pick {始点となるコミットの1つ前のコミットハッシュ}..{終点となるコミットハッシュ}

コミットハッシュを..でつなぐことで、間のコミットがcherry-pickされる

cherry-pickしたい1つ前のコミットを指定することに注意

始点のコミットハッシュは、cherry-pickの対象に含まれないことに注意。

  • commitA
  • commitB
  • commitC
  • commitD

のうちcommitBからcommitDをcherry-pickしたい場合

git cherry-pick {commitA}..{commitD}

となることに注意。

git cherry-pick {commitB}..{commitD}

としてしまうと、commitCとcommitDのみがcherry-pickされてしまう。

94
38
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
94
38

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?