prezto/plugins/git/hub.zsh

15 lines
217 B
Bash
Raw Normal View History

2012-02-01 12:37:51 +08:00
#
# Adds GitHub knowledge to the Git command.
#
# Authors:
# Chris Wanstrath <chris@wanstrath.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-08-31 11:16:15 +08:00
if (( $+commands[hub] )); then
function git {
2011-08-31 11:16:15 +08:00
hub "$@"
}
fi
2011-08-31 11:16:15 +08:00