Skip to content

Commit 2cd20dc

Browse files
committed
Merge branch 'rt/completion-tag'
* rt/completion-tag: completion: add git-tag options
2 parents 3ab0029 + 85ed2f3 commit 2cd20dc

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

contrib/completion/git-completion.bash

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2552,6 +2552,16 @@ _git_tag ()
25522552
__gitcomp_nl "$(__git_refs)"
25532553
;;
25542554
esac
2555+
2556+
case "$cur" in
2557+
--*)
2558+
__gitcomp "
2559+
--list --delete --verify --annotate --message --file
2560+
--sign --cleanup --local-user --force --column --sort
2561+
--contains --points-at
2562+
"
2563+
;;
2564+
esac
25552565
}
25562566

25572567
_git_whatchanged ()

0 commit comments

Comments
 (0)