On Fri, Oct 20, 2023 at 12:40 PM Kristoffer Haugsbakk <code@xxxxxxxxxxxxxxx> wrote: > Die gracefully when `git grep --no-index` is run outside of a Git > repository and the path is outside the directory tree. > > If you are not in a Git repository and say: > > git grep --no-index search .. > > You trigger a `BUG`: > > BUG: environment.c:213: git environment hasn't been setup > Aborted (core dumped) > > Because `..` is a valid path which is treated as a pathspec. Then > `pathspec` figures out that it is not in the current directory tree. The > `BUG` is triggered when `pathspec` tries to advice the user about how the > path is not in the current (non-existing) repository. s/advice/advise/ (probably not worth a reroll) > Reported-by: ks1322 ks1322 <ks1322@xxxxxxxxx> > Helped-by: Junio C Hamano <gitster@xxxxxxxxx> > Signed-off-by: Kristoffer Haugsbakk <code@xxxxxxxxxxxxxxx>