a2b5a8f986
- updated to version 1.8.1.4: * "git imap-send" talking over imaps:// did make sure it received a valid certificate from the other end, but did not check if the certificate matched the host it thought it was talking to. (forwarded request 156028 from tiwai) OBS-URL: https://build.opensuse.org/request/show/156029 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=103
16 lines
397 B
Diff
16 lines
397 B
Diff
---
|
|
contrib/completion/git-completion.bash | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/contrib/completion/git-completion.bash
|
|
+++ b/contrib/completion/git-completion.bash
|
|
@@ -536,7 +536,7 @@ __git_commands () {
|
|
then
|
|
printf "%s" "${GIT_TESTING_COMMAND_COMPLETION}"
|
|
else
|
|
- git help -a|egrep '^ [a-zA-Z0-9]'
|
|
+ git help -a|egrep --color=never '^ [a-zA-Z0-9]'
|
|
fi
|
|
}
|
|
|