Just like before fea16b4 (git-completion.bash: add support for path completion). Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> --- contrib/completion/git-completion.bash | 2 +- t/t9902-completion.sh | 28 ++++++++++++++-------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index a9b6a48..60a6a0b 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -247,7 +247,7 @@ __git_index_file_list_filter () while read -r path; do case "$path" in ?*/*) echo "${path%%/*}/" ;; - *) echo "$path" ;; + *) echo "$path " ;; esac done } diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh index e6cdb05..8968ef6 100755 --- a/t/t9902-completion.sh +++ b/t/t9902-completion.sh @@ -355,12 +355,12 @@ test_expect_success 'complete files' ' echo "out" >> .gitignore && git add .gitignore && - test_completion "git commit " ".gitignore" && + test_completion "git commit " ".gitignore " && git commit -m ignore && touch new && - test_completion "git add " "new" && + test_completion "git add " "new " && git add new && git commit -a -m new && @@ -368,22 +368,22 @@ test_expect_success 'complete files' ' git mv new modified && echo modify > modified && - test_completion "git add " "modified" && + test_completion "git add " "modified " && touch untracked && : TODO .gitignore should not be here && test_completion "git rm " <<-\EOF && - .gitignore - modified + .gitignore Z + modified Z EOF - test_completion "git clean " "untracked" && + test_completion "git clean " "untracked " && : TODO .gitignore should not be here && test_completion "git mv " <<-\EOF && - .gitignore - modified + .gitignore Z + modified Z EOF mkdir dir && @@ -395,20 +395,20 @@ test_expect_success 'complete files' ' : TODO .gitignore should not be here && test_completion "git mv modified " <<-\EOF && - .gitignore + .gitignore Z dir/ - modified - untracked + modified Z + untracked Z untracked-dir/ EOF - test_completion "git commit " "modified" && + test_completion "git commit " "modified " && : TODO .gitignore should not be here && test_completion "git ls-files " <<-\EOF - .gitignore + .gitignore Z dir/ - modified + modified Z EOF touch momified && -- 1.8.2.1.1031.g2ee5873 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html