1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-12-23 17:16:47 +00:00
prezto/modules/git/hub.zsh

16 lines
242 B
Bash
Raw Permalink Normal View History

#
# Adds GitHub knowledge to the Git command.
2014-10-08 03:31:31 +00:00
# https://hub.github.com
#
# Authors:
# Chris Wanstrath <chris@wanstrath.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
if (( $+commands[hub] )); then
function git {
hub "$@"
}
fi