1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-04 20:55:24 +02:00
tldr/pages/common/git-cherry-pick.md
Managor 0e8893e1ba
git*: refresh pages (#16372)
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2025-05-05 09:12:13 +03:00

21 lines
703 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.
> More information: <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 {{commit1 commit2 ...}}`
- Add the changes of a commit to the working directory, without creating a commit:
`git cherry-pick {{[-n|--no-commit]}} {{commit}}`