Remove "gh" alias

This commit is contained in:
Nathan Broadbent
2016-08-17 15:00:37 +07:00
parent db08d30928
commit 49dca42056

View File

@@ -20,7 +20,9 @@ unset -f git > /dev/null 2>&1
export _git_cmd="$(\which git)"
# Wrap git with the 'hub' github wrapper, if installed (https://github.com/defunkt/hub)
if type hub > /dev/null 2>&1; then export _git_cmd="hub"; fi
if type gh > /dev/null 2>&1; then export _git_cmd="gh"; fi
# gh is now deprecated, and merged into the `hub` command line tool.
#if type gh > /dev/null 2>&1; then export _git_cmd="gh"; fi
# Create 'git' function that calls hub if defined, and expands all numeric arguments
function git(){