9 lines
92 B
Text
9 lines
92 B
Text
function g {
|
|
if [[ $# > 0 ]]; then
|
|
git $@
|
|
else
|
|
git status
|
|
fi
|
|
}
|
|
compdef g=git
|
|
|