Rename functions/g to configs/git.zsh

This commit is contained in:
Oliver Davies 2020-03-02 23:40:17 +00:00
parent e4fa6d1a5b
commit 0865136067
2 changed files with 0 additions and 3 deletions

View file

@ -0,0 +1,9 @@
# No arguments: `git status`
# With arguments: acts like `git`
g() {
if [[ $# > 0 ]]; then
git $@
else
git status --short --branch
fi
}