This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/modules/git/hub.zsh

16 lines
250 B
Bash
Raw Normal View History

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