Browse Source

Merge branch 'es/outside-repo-errmsg-hints'

Error message clarification.

* es/outside-repo-errmsg-hints:
  prefix_path: show gitdir when arg is outside repo
maint
Junio C Hamano 5 years ago
parent
commit
f97741f6e9
  1. 3
      pathspec.c
  2. 3
      setup.c

3
pathspec.c

@ -439,7 +439,8 @@ static void init_pathspec_item(struct pathspec_item *item, unsigned flags,
match = prefix_path_gently(prefix, prefixlen, match = prefix_path_gently(prefix, prefixlen,
&prefixlen, copyfrom); &prefixlen, copyfrom);
if (!match) 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; item->match = match;

3
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); char *r = prefix_path_gently(prefix, len, NULL, path);
if (!r) if (!r)
die(_("'%s' is outside repository"), path); die(_("'%s' is outside repository at '%s'"), path,
absolute_path(get_git_work_tree()));
return r; return r;
} }



Loading…
Cancel
Save