mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 12:15:27 +02:00
git-cherry-pick: add examples to pick more commits (#1198)
This commit is contained in:
parent
34c8b016ad
commit
71a329d775
1 changed files with 11 additions and 3 deletions
|
@ -1,8 +1,16 @@
|
|||
# git cherry-pick
|
||||
|
||||
> Apply the changes introduced by some existing commits to the current branch.
|
||||
> 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.
|
||||
|
||||
- Apply commit to current branch:
|
||||
- Apply a commit to the current branch:
|
||||
|
||||
`git cherry-pick {{commit_hash}}`
|
||||
`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}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue