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 /setup.c | |
parent | 123538444f7b95ec99e6add1949e837be66a973a (diff) | |
parent | e0020b2f82910f50bc697d86aff70c3796fbdc41 (diff) | |
download | git-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; } |