dotfiles/.functions
2013-04-29 13:38:49 -04:00

9 lines
92 B
Text

function g {
if [[ $# > 0 ]]; then
git $@
else
git status
fi
}
compdef g=git