aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2018-09-20 18:37:33 +0200
committerJunio C Hamano <gitster@pobox.com>2018-09-21 09:34:43 -0700
commitb5619f6d2b72b0c06957338d279f684f9c3e45cd (patch)
tree81015ff61b6ba1107a3b5f3ab211607eef80f2d4
parent150f307afc13961b0322ad0e7205a7b193368586 (diff)
downloadgit-b5619f6d2b72b0c06957338d279f684f9c3e45cd.tar.gz
completion: support "git fetch --multiple"
When --multiple is given, the remaining arguments are remote names, not one remote followed by zero or more refspec. Detect this case, disable refspec completion, and pretend no remote is seen in order to complete multiple of them. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--contrib/completion/git-completion.bash1
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index d63d2dffd4..a66bec966b 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -943,6 +943,7 @@ __git_complete_remote_or_refspec ()
*) ;;
esac
;;
+ --multiple) no_complete_refspec=1; break ;;
-*) ;;
*) remote="$i"; break ;;
esac