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