2016-12-15 09:59:11 +00:00
|
|
|
# git cherry-pick
|
|
|
|
|
2016-12-15 15:25:23 +00:00
|
|
|
> Apply the changes introduced by existing commits to the current branch.
|
2016-12-15 09:59:11 +00:00
|
|
|
> To apply changes to another branch, first use git-checkout to switch to the desired branch.
|
|
|
|
|
2016-12-15 15:25:23 +00:00
|
|
|
- Apply a commit to the current branch:
|
2016-12-15 09:59:11 +00:00
|
|
|
|
2016-12-15 15:25:23 +00:00
|
|
|
`git cherry-pick {{commit}}`
|
|
|
|
|
|
|
|
- Apply a range of commits to the current branch (see also `git rebase --onto`):
|
|
|
|
|
|
|
|
`git cherry-pick {{start_commit}}~..{{end_commit}}`
|
|
|
|
|
|
|
|
- Apply multiple (non-sequential) commits to the current branch:
|
|
|
|
|
|
|
|
`git cherry-pick {{commit_1}} {{commit_2}}`
|