if test -n "$BASH_VERSION"; then
# completion for global aliases in .gitconfig
- # fixup rbi rbia rbiap rbip - delegate to git-rebase completion
- _git_fixup() { _git_rebase ; }
- _git_rbi() { _git_rebase ; }
- _git_rbia() { _git_rebase ; }
- _git_rbiap() { _git_rebase ; }
- _git_rbip() { _git_rebase ; }
+ # fixup rbi rbia rbiap rbip - do refs name completion
+ _git_fixup() { __gitcomp_nl "$(__git_refs)" ; }
+ _git_rbi() { __gitcomp_nl "$(__git_refs)" ; }
+ _git_rbia() { __gitcomp_nl "$(__git_refs)" ; }
+ _git_rbiap() { __gitcomp_nl "$(__git_refs)" ; }
+ _git_rbip() { __gitcomp_nl "$(__git_refs)" ; }
+ #
+ # push-to-all-remotes - do branch name completion
+ _git_push_to_all_remotes() { __gitcomp_nl "$(__git_heads)" ; }
# list remotes with URLs matching a regexp
_list_remotes() {