10 lines
257 B
Bash
10 lines
257 B
Bash
#compdef git-changes
|
|
#description Compare changes on this branch with another.
|
|
|
|
_alternative \
|
|
'branches::__git_branch_names' \
|
|
'remote-branches::__git_remote_branch_names_noprefix' \
|
|
'remote-branches-prefix::__git_remote_branch_names'
|
|
|
|
# vim: ft=zsh
|