aboutsummaryrefslogtreecommitdiffstats
path: root/setup.c
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 /setup.c
parent123538444f7b95ec99e6add1949e837be66a973a (diff)
parente0020b2f82910f50bc697d86aff70c3796fbdc41 (diff)
downloadgit-f97741f6e9c46a75b4322760d77322e53c4322d7.tar.gz
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 'setup.c')
-rw-r--r--setup.c3
1 files changed, 2 insertions, 1 deletions
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;
}