mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 08:31:12 +00:00
8de68a9bda
This reverts commit ccf181379a
.
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
|
|
|