aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-02-17 13:22:19 -0800
committerJunio C Hamano <gitster@pobox.com>2020-02-17 13:22:19 -0800
commitf97741f6e9c46a75b4322760d77322e53c4322d7 (patch)
treee8473aaaec8c9f07a35d36d7119e3f0f490faa57
parentMerge branch 'jk/doc-credential-helper' (diff)
parentprefix_path: show gitdir when arg is outside repo (diff)
downloadgit-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
-rw-r--r--pathspec.c3
-rw-r--r--setup.c3
2 files changed, 4 insertions, 2 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;
diff --git a/setup.c b/setup.c
index 12228c0d9c..4ea7a0b081 100644
--- a/setup.c
+++ b/setup.c
@@ -121,7 +121,8 @@ char *prefix_path(const char *prefix, int len, const char *path)
{
char *r = prefix_path_gently(prefix, len, NULL, path);
if (!r)
- die(_("'%s' is outside repository"), path);
+ die(_("'%s' is outside repository at '%s'"), path,
+ absolute_path(get_git_work_tree()));
return r;
}