From: SZEDER Gábor Date: Mon, 13 Feb 2017 19:20:36 +0000 (+0100) Subject: completion: restore removed line continuating backslash X-Git-Tag: v2.13.0-rc0~170^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ba042017a63492d8709b1991def43414ce87976;p=git completion: restore removed line continuating backslash Recent commit 1cd23e9e0 (completion: don't use __gitdir() for git commands, 2017-02-03) rewrapped a couple of long lines, and while doing so it inadvertently removed a '\' from the end of a line, thus breaking completion for 'git config remote.name.push '. Signed-off-by: SZEDER Gábor Signed-off-by: Junio C Hamano --- diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index d2601aee94..66d84745c6 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -2010,7 +2010,7 @@ _git_config () remote.*.push) local remote="${prev#remote.}" remote="${remote%.push}" - __gitcomp_nl "$(__git for-each-ref + __gitcomp_nl "$(__git for-each-ref \ --format='%(refname):%(refname)' refs/heads)" return ;;