1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 14:40:27 +00:00
prezto/modules/git/hub.zsh

16 lines
250 B
Bash
Raw Normal View History

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