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