1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/git-cherry-pick.md
2019-01-30 11:19:23 +00:00

17 lines
560 B
Markdown

# git cherry-pick
> Apply the changes introduced by existing commits to the current branch.
> To apply changes to another branch, first use git-checkout to switch to the desired branch.
> Homepage: <https://git-scm.com/docs/git-cherry-pick>.
- Apply a commit to the current branch:
`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}}`