prezto/plugins/git/hub.zsh
2012-02-02 18:30:07 -05:00

15 lines
219 B
Bash

#
# Adds GitHub knowledge to the Git command.
#
# Authors:
# Chris Wanstrath <chris@wanstrath.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
if (( $+commands[hub] )); then
function git() {
hub "$@"
}
fi