Cherry Pick 的使用场景
# cherry-pick 指定 commit,可同时传入多个 commit
git cherry-pick <commit_hash> # gcp
# 放弃 cherry-pick
git cherry-pick --abort # gcpa
# cherry-pick 多个 commit 时,解决冲突后继续下次合并
git cherry-pick --continue # gcpcLast updated
# cherry-pick 指定 commit,可同时传入多个 commit
git cherry-pick <commit_hash> # gcp
# 放弃 cherry-pick
git cherry-pick --abort # gcpa
# cherry-pick 多个 commit 时,解决冲突后继续下次合并
git cherry-pick --continue # gcpcLast updated