You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
250 B
16 lines
250 B
13 years ago
|
#
|
||
|
# Adds GitHub knowledge to the Git command.
|
||
13 years ago
|
# https://github.com/defunkt/hub
|
||
13 years ago
|
#
|
||
|
# Authors:
|
||
|
# Chris Wanstrath <chris@wanstrath.com>
|
||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
|
#
|
||
|
|
||
13 years ago
|
if (( $+commands[hub] )); then
|
||
13 years ago
|
function git {
|
||
13 years ago
|
hub "$@"
|
||
|
}
|
||
14 years ago
|
fi
|
||
13 years ago
|
|