1git-cherry-pick(1) 2================== 3 4NAME 5---- 6git-cherry-pick - Apply the change introduced by an existing commit. 7 8SYNOPSIS 9-------- 10'git-cherry-pick' [--edit] [-n] [-r] <commit> 11 12DESCRIPTION 13----------- 14Given one existing commit, apply the change the patch introduces, and record a 15new commit that records it. This requires your working tree to be clean (no 16modifications from the HEAD commit). 17 18OPTIONS 19------- 20<commit>:: 21 Commit to cherry-pick. 22 23-e|--edit:: 24 With this option, `git-cherry-pick` will let you edit the commit 25 message prior committing. 26 27-r|--replay:: 28 Usually the command appends which commit was 29 cherry-picked after the original commit message when 30 making a commit. This option, '--replay', causes it to 31 use the original commit message intact. This is useful 32 when you are reordering the patches in your private tree 33 before publishing. 34 35-n|--no-commit:: 36 Usually the command automatically creates a commit with 37 a commit log message stating which commit was 38 cherry-picked. This flag applies the change necessary 39 to cherry-pick the named commit to your working tree, 40 but does not make the commit. In addition, when this 41 option is used, your working tree does not have to match 42 the HEAD commit. The cherry-pick is done against the 43 beginning state of your working tree. 44+ 45This is useful when cherry-picking more than one commits' 46effect to your working tree in a row. 47 48 49Author 50------ 51Written by Junio C Hamano <junkio@cox.net> 52 53Documentation 54-------------- 55Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>. 56 57GIT 58--- 59Part of the gitlink:git[7] suite 60