2013-12-03 14:26:02 +01:00
|
|
|
---
|
2015-03-16 09:42:01 +01:00
|
|
|
contrib/completion/git-completion.tcsh | 17 +++++++----------
|
2014-02-07 10:25:52 +01:00
|
|
|
contrib/completion/git.csh | 4 ++++
|
|
|
|
contrib/completion/git.tcsh | 4 ++++
|
2015-03-16 09:42:01 +01:00
|
|
|
3 files changed, 15 insertions(+), 10 deletions(-)
|
2013-12-03 14:26:02 +01:00
|
|
|
|
2017-02-06 14:33:18 +01:00
|
|
|
Index: git-2.11.0/contrib/completion/git-completion.tcsh
|
2015-07-21 13:25:30 +02:00
|
|
|
===================================================================
|
2017-02-06 14:33:18 +01:00
|
|
|
--- git-2.11.0.orig/contrib/completion/git-completion.tcsh
|
|
|
|
+++ git-2.11.0/contrib/completion/git-completion.tcsh
|
2015-03-16 09:42:01 +01:00
|
|
|
@@ -32,14 +32,14 @@ if ( ${__git_tcsh_completion_version[1]}
|
2013-12-03 14:26:02 +01:00
|
|
|
endif
|
|
|
|
unset __git_tcsh_completion_version
|
|
|
|
|
|
|
|
-set __git_tcsh_completion_original_script = ${HOME}/.git-completion.bash
|
|
|
|
-set __git_tcsh_completion_script = ${HOME}/.git-completion.tcsh.bash
|
2022-06-18 22:05:18 +02:00
|
|
|
+set __git_tcsh_completion_original_script = /usr/share/bash-completion/completions/git
|
2013-12-03 14:26:02 +01:00
|
|
|
+set __git_tcsh_completion_script = $RPM_BUILD_ROOT/usr/share/tcsh/git.complete
|
|
|
|
|
2015-03-16 09:42:01 +01:00
|
|
|
-# Check that the user put the script in the right place
|
|
|
|
-if ( ! -e ${__git_tcsh_completion_original_script} ) then
|
|
|
|
- echo "git-completion.tcsh: Cannot find: ${__git_tcsh_completion_original_script}. Git completion will not work."
|
|
|
|
- exit
|
|
|
|
-endif
|
|
|
|
+# # Check that the user put the script in the right place
|
|
|
|
+# if ( ! -e ${__git_tcsh_completion_original_script} ) then
|
|
|
|
+# echo "git-completion.tcsh: Cannot find: ${__git_tcsh_completion_original_script}. Git completion will not work."
|
|
|
|
+# exit
|
|
|
|
+# endif
|
|
|
|
|
2015-07-21 13:25:30 +02:00
|
|
|
cat << EOF >! ${__git_tcsh_completion_script}
|
2015-03-16 09:42:01 +01:00
|
|
|
#!bash
|
|
|
|
@@ -121,6 +121,3 @@ EOF
|
2013-12-03 14:26:02 +01:00
|
|
|
|
|
|
|
# Don't need this variable anymore, so don't pollute the users environment
|
|
|
|
unset __git_tcsh_completion_original_script
|
|
|
|
-
|
|
|
|
-complete git 'p,*,`bash ${__git_tcsh_completion_script} git "${COMMAND_LINE}"`,'
|
|
|
|
-complete gitk 'p,*,`bash ${__git_tcsh_completion_script} gitk "${COMMAND_LINE}"`,'
|
2017-02-06 14:33:18 +01:00
|
|
|
Index: git-2.11.0/contrib/completion/git.csh
|
2015-07-21 13:25:30 +02:00
|
|
|
===================================================================
|
2013-12-03 14:26:02 +01:00
|
|
|
--- /dev/null
|
2017-02-06 14:33:18 +01:00
|
|
|
+++ git-2.11.0/contrib/completion/git.csh
|
2014-02-07 10:25:52 +01:00
|
|
|
@@ -0,0 +1,4 @@
|
|
|
|
+if (${?prompt}) then
|
2013-12-03 14:26:02 +01:00
|
|
|
+complete git 'p,*,`bash /usr/share/tcsh/git.complete git "${COMMAND_LINE}"`,'
|
|
|
|
+complete gitk 'p,*,`bash /usr/share/tcsh/git.complete gitk "${COMMAND_LINE}"`,'
|
2014-02-07 10:25:52 +01:00
|
|
|
+endif
|
2017-02-06 14:33:18 +01:00
|
|
|
Index: git-2.11.0/contrib/completion/git.tcsh
|
2015-07-21 13:25:30 +02:00
|
|
|
===================================================================
|
2013-12-03 14:26:02 +01:00
|
|
|
--- /dev/null
|
2017-02-06 14:33:18 +01:00
|
|
|
+++ git-2.11.0/contrib/completion/git.tcsh
|
2014-02-07 10:25:52 +01:00
|
|
|
@@ -0,0 +1,4 @@
|
|
|
|
+if (${?prompt}) then
|
2013-12-03 14:26:02 +01:00
|
|
|
+complete git 'p,*,`bash /usr/share/tcsh/git.complete git "${COMMAND_LINE}"`,'
|
|
|
|
+complete gitk 'p,*,`bash /usr/share/tcsh/git.complete gitk "${COMMAND_LINE}"`,'
|
2014-02-07 10:25:52 +01:00
|
|
|
+endif
|