1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

あるブランチで進めていた内容を、やっぱりmainブランチから新しく切って進めたい場合

Posted at

ブランチbでコミットA,B,Cとしたあとに、やはりブランチaから新しくブランチcを切って、コミットA,Bの内容でコミットしたくなった場合の方法です

スクリーンショット 2024-05-07 23.57.21.png

ブランチaにチェックアウトしたあとに新しくブランチcを切ります

git checkout a
git checkout -b feature-c

git cherry-pickを用いてコミットA,Bの内容を取り組みます

git cherry-pick Aのコミットid Bのコミットid

あとはプッシュするだけです

仕事でこうすればよかったという備忘録で書いております、試していないので間違いがあればご指摘ください。

こちらの参考記事様がすべてです。
https://qiita.com/okmtz/items/62aa5a25f75b1754a861

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?