mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-15 23:48:56 +00:00
Update cheatsheets
This commit is contained in:
26
git-cherry-pick
Normal file
26
git-cherry-pick
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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 --no-commit {{commit}}`
|
||||
Reference in New Issue
Block a user