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 | |
| 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
| -rw-r--r-- | pathspec.c | 3 | ||||
| -rw-r--r-- | setup.c | 3 |
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; @@ -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; } |
