Ville Skyttä <ville.skytta@xxxxxx> writes: > Signed-off-by: Ville Skyttä <ville.skytta@xxxxxx> > --- > contrib/completion/git-completion.bash | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash > index 6a187bc..76abbd1 100644 > --- a/contrib/completion/git-completion.bash > +++ b/contrib/completion/git-completion.bash > @@ -1008,8 +1008,8 @@ _git_branch () > while [ $c -lt $cword ]; do > i="${words[c]}" > case "$i" in > - -d|-m) only_local_ref="y" ;; > - -r) has_r="y" ;; > + -d|--delete|-m|--move) only_local_ref="y" ;; > + -r|--remotes) has_r="y" ;; > esac > ((c++)) > done Sounds sensible; we already had "-d" but not its fully-spelled variant, and you are adding it (together with its friends). Will queue. > @@ -1023,7 +1023,7 @@ _git_branch () > --color --no-color --verbose --abbrev= --no-abbrev > --track --no-track --contains --merged --no-merged > --set-upstream-to= --edit-description --list > - --unset-upstream > + --unset-upstream --delete --move --remotes > " > ;; > *) -- 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