diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2018-03-07 02:05:04 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-07 20:02:48 +0100 |
commit | 27b42d045c06b6138555fef2b00d8d72220bc8be (patch) | |
tree | a93a03162240fdb9c67c940b052cb7d340dce9ea /contrib/completion/git-completion.bash | |
parent | completion: complete --{reuse,reedit}-message= for all notes subcmds (diff) | |
download | git-27b42d045c06b6138555fef2b00d8d72220bc8be.tar.xz git-27b42d045c06b6138555fef2b00d8d72220bc8be.zip |
completion: more subcommands in _git_notes()
Two subcommands are added for completion: merge and get-ref. get-ref
is more like plumbing. But since it does not share the prefix with any
other subcommands, it won't slow anybody down.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | contrib/completion/git-completion.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index dc3ec43b65..2e30950299 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1815,7 +1815,7 @@ _git_name_rev () _git_notes () { - local subcommands='add append copy edit list prune remove show' + local subcommands='add append copy edit get-ref list merge prune remove show' local subcommand="$(__git_find_on_cmdline "$subcommands")" case "$subcommand,$cur" in @@ -1838,7 +1838,7 @@ _git_notes () *,--*) __gitcomp_builtin notes_$subcommand ;; - prune,*) + prune,*|get-ref,*) # this command does not take a ref, do not complete it ;; *) |