[PATCH] git-completion.bash: update obsolete code.
From: Manlio Perillo <hidden>
Date: 2016-06-15 22:55:32
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Manlio Perillo <hidden>
Date: 2016-06-15 22:55:32
Subsystem:
the rest · Maintainer:
Linus Torvalds
The git-completion.bash script was using the git ls-tree command without the --name-only option, with a sed filter to parse path names; use the --name-only option, instead. Signed-off-by: Manlio Perillo <redacted> --- contrib/completion/git-completion.bash | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-)
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 0b77eb1..85d9051 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash@@ -397,20 +397,7 @@ __git_complete_revlist_file () *) pfx="$ref:$pfx" ;; esac - __gitcomp_nl "$(git --git-dir="$(__gitdir)" ls-tree "$ls" \ - | sed '/^100... blob /{ - s,^.* ,, - s,$, , - } - /^120000 blob /{ - s,^.* ,, - s,$, , - } - /^040000 tree /{ - s,^.* ,, - s,$,/, - } - s/^.* //')" \ + __gitcomp_nl "$(git --git-dir="$(__gitdir)" ls-tree --name-only "$ls")" \ "$pfx" "$cur_" "" ;; *...*)
--
1.8.1.rc1.18.g9db0d25