9 lines
137 B
Text
9 lines
137 B
Text
# No arguments: `git status`
|
|
# With arguments: acts like `git`
|
|
g() {
|
|
if [[ $# -gt 0 ]]; then
|
|
git "$@"
|
|
else
|
|
git status
|
|
fi
|
|
}
|