git cherry-pick 用法

1. 切换到目标分支

说明:本人基于 master 新建分支 master-fxd,那么目标分支为 master-fxd

git checkout <target-branch>

2. 从其他分支选择并应用单个提交

说明,其他分支例如 dev 提交的代码,使用 jihulab.com 比较 master-fxd 和 dev 分支,下图右侧复制单个提交 id
git cherry-pick 用法_第1张图片git cherry-pick 用法_第2张图片

git cherry-pick <commit-hash>

3. 从其他分支选择并应用多个提交

git cherry-pick <commit-hash-1> <commit-hash-2> <commit-hash-3>

你可能感兴趣的:(git)