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