Quoting "Tim Visher" <tim.visher@xxxxxxxxx>: > On Wed, Dec 17, 2008 at 5:59 PM, Junio C Hamano <gitster@xxxxxxxxx> wrote: >> How about omitting the "git commit" and do "git checkout PATH" after you >> are done with the staging? IOW, (1) above. > > Huh. I guess I was under the impression that doing the `git checkout > PATH` would destroy the staged content as well as the unstaged. This > isn't the case? A short answer is "no it is not the case." I was about to quote "git checkout" documentation to you because I was reasonably sure that Junio won't respond to people who ask a question whose answer is plainly described in the manual pages, but I think the description of the command is a little confusing especially for people who read it for the first time. This is a patch to clarify the sentence. -- 8< -- Cut Here -- 8< -- Subject: Clarify documentation of "git checkout <tree-ish> paths" syntax The SYNOPSIS section of the manual writes: git checkout [options] [<tree-ish>] [--] <paths>... but the DESCRIPTION says that this form checks the paths out "from the index, or from a named commit." A later sentence refers to the same argument as "<tree-ish> argument", but it is not clear that these two sentences are talking about the same command line argument for first-time readers. Signed-off-by: Nanako Shiraishi <nanako3@xxxxxxxxxxx> --- Documentation/git-checkout.txt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Documentation/git-checkout.txt b/Documentation/git-checkout.txt index 168333a..bbdfa40 100644 --- a/Documentation/git-checkout.txt +++ b/Documentation/git-checkout.txt @@ -27,7 +27,7 @@ the first namespace level. When <paths> are given, this command does *not* switch branches. It updates the named paths in the working tree from -the index file, or from a named commit. In +the index file, or from a named <tree-ish> (most often a commit). In this case, the `-b` options is meaningless and giving either of them results in an error. <tree-ish> argument can be used to specify a specific tree-ish (i.e. commit, tag or tree) -- Nanako Shiraishi http://ivory.ap.teacup.com/nanako3/ -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html