Junio C Hamano <gitster@xxxxxxxxx> writes: > Jeff King <peff@xxxxxxxx> writes: > ... >> I'm actually wondering if the way it calls die() in 'next' is a pretty >> reasonable way for things to work in general. It happens when we lazily >> try to ask for the repository directory. So we don't have to replicate >> logic to say "are we going to need a repo"; at the moment we need it, we >> notice we don't have it and die. The only problem is that it says "BUG" >> and not "this operation must be run in a git repository". > > Isn't what we currently have is a good way to discover which > codepaths we missed to add a check to issue the latter error? I am tempted to suggest an intermediate step that comes before b1ef400eec ("setup_git_env: avoid blind fall-back to ".git"", 2016-10-20), which is the attached, and publish that as part of an official release. That way, we'll see what is broken without hurting people too much (unless they or their scripts care about extra message given to the standard error stream). I suspect that released Git has a slightly larger user base than what is cooked on 'next'. environment.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/environment.c b/environment.c index 0935ec696e..88f857331e 100644 --- a/environment.c +++ b/environment.c @@ -167,8 +167,11 @@ static void setup_git_env(void) const char *replace_ref_base; git_dir = getenv(GIT_DIR_ENVIRONMENT); - if (!git_dir) + if (!git_dir) { + if (!startup_info->have_repository) + warning("BUG: please report this at git@xxxxxxxxxxxxxxx"); git_dir = DEFAULT_GIT_DIR_ENVIRONMENT; + } gitfile = read_gitfile(git_dir); git_dir = xstrdup(gitfile ? gitfile : git_dir); if (get_common_dir(&sb, git_dir))