From: Elijah Newren Date: Sun, 3 Dec 2023 05:57:01 +0000 (+0000) Subject: completion: squelch stray errors in sparse-checkout completion X-Git-Tag: v2.44.0-rc0~131^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6b7f56f7ef7aa394d07ff99deff7740f4f3e04a3;p=thirdparty%2Fgit.git completion: squelch stray errors in sparse-checkout completion If, in the root of a project, one types git sparse-checkout set --cone ../ then an error message of the form fatal: ../: '../' is outside repository at '/home/newren/floss/git' is written to stderr, which munges the users view of their own command. Squelch such messages by using the __git() wrapper, designed for this purpose; see commit e15098a314 (completion: consolidate silencing errors from git commands, 2017-02-03) for more on the wrapper. Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 13a39ebd2e..b866170171 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -3084,7 +3084,7 @@ __gitcomp_directories () COMPREPLY+=("$c/") _found=1 fi - done < <(git ls-tree -z -d --name-only HEAD $_tmp_dir) + done < <(__git ls-tree -z -d --name-only HEAD $_tmp_dir) if [[ $_found == 0 ]] && [[ "$cur" =~ /$ ]]; then # No possible further completions any deeper, so assume we're at