From: Christian Couder Date: Sat, 6 Mar 2010 20:34:44 +0000 (+0100) Subject: Documentation: describe new cherry-pick --ff option X-Git-Tag: v1.7.1-rc0~36^2~2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ab7e63e85f2307447f8fc6679e1f355385881236;p=git.git Documentation: describe new cherry-pick --ff option Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-cherry-pick.txt b/Documentation/git-cherry-pick.txt index 78f4714da..d71607a85 100644 --- a/Documentation/git-cherry-pick.txt +++ b/Documentation/git-cherry-pick.txt @@ -7,7 +7,7 @@ git-cherry-pick - Apply the change introduced by an existing commit SYNOPSIS -------- -'git cherry-pick' [--edit] [-n] [-m parent-number] [-s] [-x] +'git cherry-pick' [--edit] [-n] [-m parent-number] [-s] [-x] [--ff] DESCRIPTION ----------- @@ -70,6 +70,10 @@ effect to your index in a row. --signoff:: Add Signed-off-by line at the end of the commit message. +--ff:: + If the current HEAD is the same as the parent of the + cherry-pick'ed commit, then a fast forward to this commit will + be performed. Author ------