私はこれを持っています:
branch-1 a--b--c--d
私はこれを必要とする:
branch-1 a--c--d
branch-2 b
私はこれを試しました:
$git checkout -b branch-2
$git cherry-pick <SHA-1 b>
しかし、私はこれを得ました:
error: could not apply <SHA-1 b>... [comment]
hint: after resolving the conflicts, mark the corrected paths
hint: with 'git add <paths>' or 'git rm <paths>'
hint: and commit the result with 'git commit'
だから私はやっ$git status
たUnmerged paths ... both modified: .gitignore
。再試行する前にgit add
ed とgit commit
ted を実行しましたが、同じエラーメッセージが再び表示されました。
特定のコミットを新しいブランチに移動するにはどうすればよいですか?