diff options
| author | Junio C Hamano <gitster@pobox.com> | 2020-02-17 13:22:19 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2020-02-17 13:22:19 -0800 |
| commit | f97741f6e9c46a75b4322760d77322e53c4322d7 (patch) | |
| tree | e8473aaaec8c9f07a35d36d7119e3f0f490faa57 /pathspec.c | |
| parent | Merge branch 'jk/doc-credential-helper' (diff) | |
| parent | prefix_path: show gitdir when arg is outside repo (diff) | |
| download | git-f97741f6e9c46a75b4322760d77322e53c4322d7.tar.gz git-f97741f6e9c46a75b4322760d77322e53c4322d7.zip | |
Merge branch 'es/outside-repo-errmsg-hints'
Error message clarification.
* es/outside-repo-errmsg-hints:
prefix_path: show gitdir when arg is outside repo
Diffstat (limited to 'pathspec.c')
| -rw-r--r-- | pathspec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pathspec.c b/pathspec.c index 128f27fcb7..166d255642 100644 --- a/pathspec.c +++ b/pathspec.c @@ -439,7 +439,8 @@ static void init_pathspec_item(struct pathspec_item *item, unsigned flags, match = prefix_path_gently(prefix, prefixlen, &prefixlen, copyfrom); if (!match) - die(_("%s: '%s' is outside repository"), elt, copyfrom); + die(_("%s: '%s' is outside repository at '%s'"), elt, + copyfrom, absolute_path(get_git_work_tree())); } item->match = match; |
