#他のブランチのコミットを取り込みたいときの手順(記録)
ターミナル.
$git checkout hogebranch2
取り込みたいコミットがあるブランチに移動する
$git log --oneline
コミットログを確認
$git checkout hogebranch1
取り込みたいブランチに戻り
$git cherry-pick XXXXXXXXXXXXXXXXXXX
cherry-pickでコミットを取り込む
Go to list of users who liked
More than 3 years have passed since last update.
#他のブランチのコミットを取り込みたいときの手順(記録)
$git checkout hogebranch2
取り込みたいコミットがあるブランチに移動する
$git log --oneline
コミットログを確認
$git checkout hogebranch1
取り込みたいブランチに戻り
$git cherry-pick XXXXXXXXXXXXXXXXXXX
cherry-pickでコミットを取り込む
Register as a new user and use Qiita more conveniently
Go to list of users who liked