git-cherry-pick: add example for -n option (#3084)

italian
Waldir Pimenta 2019-06-07 11:02:10 +01:00 committed by Starbeamrainbowlabs
parent 1dad65678b
commit 67e7be9650
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# 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.
> 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:
@ -15,3 +15,7 @@
- Apply multiple (non-sequential) commits to the current branch:
`git cherry-pick {{commit_1}} {{commit_2}}`
- Add the changes of a commit to the working directory, without creating a commit:
`git cherry-pick -n {{commit}}`