Clarify documentation for git-diff: State that when not inside a repository, --no-index is implied (and thus two arguments are mandatory). Clarify error message from diff-no-index to inform user that CWD is not inside a repository and thus two arguments are mandatory. Signed-off-by: Dale Worley <worley@xxxxxxxxxxx> --- The error message has been updated from [PATCH]. "git diff" outside a repository now produces: Not a git repository To compare two paths outside a working tree: usage: git diff [--no-index] <path> <path> This should inform the user of his error regardless of whether he intended to perform a within-repository "git diff" or an out-of-repository "git diff". This message is closer to the message that other Git commands produce: fatal: Not a git repository (or any parent up to mount parent ) Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set). "git diff --no-index" produces the same message as before (since the user is clearly invoking the non-repository behavior): usage: git diff --no-index <path> <path> Regarding the change to git-diff.txt, perhaps "forced ... by executing 'git diff' outside of a working tree" is not the best wording, but it should be clear to the reader that (1) it is possible to execute 'git diff' outside of a working tree, and (2) when doing so, the behavior will be as if '--no-index' was specified. I've also added some comments for the new code. Documentation/git-diff.txt | 3 ++- diff-no-index.c | 12 +++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Documentation/git-diff.txt b/Documentation/git-diff.txt index 78d6d50..9f74989 100644 --- a/Documentation/git-diff.txt +++ b/Documentation/git-diff.txt @@ -31,7 +31,8 @@ two blob objects, or changes between two files on disk. + If exactly two paths are given and at least one points outside the current repository, 'git diff' will compare the two files / -directories. This behavior can be forced by --no-index. +directories. This behavior can be forced by --no-index or by +executing 'git diff' outside of a working tree. 'git diff' [--options] --cached [<commit>] [--] [<path>...]:: diff --git a/diff-no-index.c b/diff-no-index.c index e66fdf3..9734ec3 100644 --- a/diff-no-index.c +++ b/diff-no-index.c @@ -215,9 +215,19 @@ void diff_no_index(struct rev_info *revs, path_inside_repo(prefix, argv[i+1]))) return; } - if (argc != i + 2) + if (argc != i + 2) { + if (!no_index) { + /* There was no --no-index and there were not two + * paths. It is possible that the user intended + * to do an inside-repository operation. */ + fprintf(stderr, "Not a git repository\n"); + fprintf(stderr, + "To compare two paths outside a working tree:\n"); + } + /* Give the usage message for non-repository usage and exit. */ usagef("git diff %s <path> <path>", no_index ? "--no-index" : "[--no-index]"); + } diff_setup(&revs->diffopt); for (i = 1; i < argc - 2; ) { -- 1.7.7.6 -- 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