dotfiles/zsh/func/g

15 lines
185 B
Text
Raw Normal View History

2021-12-31 11:54:55 -08:00
#!/usr/bin/env zsh
# Eryn Wells <eryn@erynwells.me>
function g
{
if [[ $# -gt 0 ]]; then
git $@
else
git status --short --branch
fi
return $?
}
g "$@"