15 lines
185 B
Text
15 lines
185 B
Text
|
#!/usr/bin/env zsh
|
||
|
# Eryn Wells <eryn@erynwells.me>
|
||
|
|
||
|
function g
|
||
|
{
|
||
|
if [[ $# -gt 0 ]]; then
|
||
|
git $@
|
||
|
else
|
||
|
git status --short --branch
|
||
|
fi
|
||
|
return $?
|
||
|
}
|
||
|
|
||
|
g "$@"
|