1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-06 03:49:44 +00:00
prezto/plugins/git/hub.zsh

15 lines
219 B
Bash
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Adds GitHub knowledge to the Git command.
#
# 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() {
hub "$@"
}
fi
2011-08-31 03:16:15 +00:00