From 71a329d775e66fc7c48bf269903a64572106a8ee Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Thu, 15 Dec 2016 15:25:23 +0000 Subject: [PATCH] git-cherry-pick: add examples to pick more commits (#1198) --- pages/common/git-cherry-pick.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pages/common/git-cherry-pick.md b/pages/common/git-cherry-pick.md index c05162fde5..298be57c6d 100644 --- a/pages/common/git-cherry-pick.md +++ b/pages/common/git-cherry-pick.md @@ -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}}`