2023-12-28 01:08:34 +01:00
|
|
|
---
|
|
|
|
contrib/completion/git-completion.bash | 10 ++++++----
|
|
|
|
1 file changed, 6 insertions(+), 4 deletions(-)
|
|
|
|
|
2024-09-13 11:44:07 +02:00
|
|
|
Index: git-2.43.1/contrib/completion/git-completion.bash
|
2023-12-28 01:08:34 +01:00
|
|
|
===================================================================
|
2024-09-13 11:44:07 +02:00
|
|
|
--- git-2.43.1.orig/contrib/completion/git-completion.bash
|
|
|
|
+++ git-2.43.1/contrib/completion/git-completion.bash
|
|
|
|
@@ -67,10 +67,12 @@
|
2023-12-28 01:08:34 +01:00
|
|
|
# case insensitively, even on systems with case sensitive file systems
|
|
|
|
# (e.g., completing tag name "FOO" on "git checkout f<TAB>").
|
|
|
|
|
|
|
|
-case "$COMP_WORDBREAKS" in
|
|
|
|
-*:*) : great ;;
|
|
|
|
-*) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
|
|
|
|
-esac
|
|
|
|
+# SUSE-specific: We trust the system is consistent and do not let individual
|
|
|
|
+# scripts play ping-pong with the global $COMP_WORDBREAKS value.
|
|
|
|
+#case "$COMP_WORDBREAKS" in
|
|
|
|
+#*:*) : great ;;
|
|
|
|
+#*) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
|
|
|
|
+#esac
|
|
|
|
|
|
|
|
# Discovers the path to the git repository taking any '--git-dir=<path>' and
|
|
|
|
# '-C <path>' options into account and stores it in the $__git_repo_path
|