Files
MSYS2-packages/git/git-bash-completion-egrep-color-fix.patch
Yury Buldakov cf4ac8a7bf Update git to v2.10.2
* Fixes #735
* Import *sh completion and XSS patches from openSUSE
2016-11-14 08:34:44 +02:00

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
}