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