From: Junio C Hamano Date: Mon, 10 Sep 2012 19:47:38 +0000 (-0700) Subject: gitcli: formatting fix X-Git-Tag: v1.7.11.7~5^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=008566e0f8ef9751c43197f40ac08d3bdfce78a7;p=git.git gitcli: formatting fix The paragraph to encourage use of "--" in scripts belongs to the bullet point that describes the behaviour for a command line without the explicit "--" disambiguation; it is not a supporting explanation for the entire bulletted list, and it is wrong to make it a separate paragraph outside the list. Signed-off-by: Junio C Hamano --- diff --git a/Documentation/gitcli.txt b/Documentation/gitcli.txt index ea17f7a53..c4edf042d 100644 --- a/Documentation/gitcli.txt +++ b/Documentation/gitcli.txt @@ -37,7 +37,7 @@ arguments. Here are the rules: file called HEAD in your work tree, `git diff HEAD` is ambiguous, and you have to say either `git diff HEAD --` or `git diff -- HEAD` to disambiguate. - ++ When writing a script that is expected to handle random user-input, it is a good practice to make it explicit which arguments are which by placing disambiguating `--` at appropriate places.