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