summaryrefslogtreecommitdiff
path: root/Documentation/git-cherry-pick.txt
diff options
context:
space:
mode:
authorPetr Baudis <pasky@suse.cz>2008-07-16 12:35:22 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-07-16 15:50:07 (GMT)
commit8bd867ee0e9714457e5ea973849b0025f3e99efc (patch)
tree0773146a7218533c24250b776c8ac0a5513b6a10 /Documentation/git-cherry-pick.txt
parent191a8e32b38c7ff0dd884df7bd323b7a5bd4336c (diff)
downloadgit-8bd867ee0e9714457e5ea973849b0025f3e99efc.zip
git-8bd867ee0e9714457e5ea973849b0025f3e99efc.tar.gz
git-8bd867ee0e9714457e5ea973849b0025f3e99efc.tar.bz2
Documentation/git-cherry-pick.txt et al.: Fix misleading -n description
The manual page of git-cherry-pick and git-revert asserts that -n works primarily on the working tree, while in fact the primary object it operates on is the index, and the changes only "accidentally" propagate to the working tree. This e.g. leads innocent #git IRC folks to believe that you can use -n to prepare changes for git-add -i staging. Signed-off-by: Petr Baudis <pasky@suse.cz> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-cherry-pick.txt')
-rw-r--r--Documentation/git-cherry-pick.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/git-cherry-pick.txt b/Documentation/git-cherry-pick.txt
index 5ac9cfb..4ef5af4 100644
--- a/Documentation/git-cherry-pick.txt
+++ b/Documentation/git-cherry-pick.txt
@@ -58,14 +58,14 @@ OPTIONS
Usually the command automatically creates a commit with
a commit log message stating which commit was
cherry-picked. This flag applies the change necessary
- to cherry-pick the named commit to your working tree,
- but does not make the commit. In addition, when this
- option is used, your working tree does not have to match
+ to cherry-pick the named commit to your working tree
+ and the index, but does not make the commit. In addition,
+ when this option is used, your index does not have to match
the HEAD commit. The cherry-pick is done against the
- beginning state of your working tree.
+ beginning state of your index.
+
This is useful when cherry-picking more than one commits'
-effect to your working tree in a row.
+effect to your index in a row.
-s::
--signoff::