HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

git cherry-pick — Apply the changes introduced by existing commits to the current branch. To apply changes to another

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandintroducedapplycliexistinggit cherry-pickchanges

Problem

How to use the git cherry-pick command: 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>.

Solution

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}}

Code Snippets

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}}

Context

tldr-pages: common/git cherry-pick

Revisions (0)

No revisions yet.