Add functions file

This commit is contained in:
Andrew Tomaka 2013-04-29 13:38:49 -04:00
parent 8264540283
commit 64ecb489ed

9
.functions Normal file
View file

@ -0,0 +1,9 @@
function g {
if [[ $# > 0 ]]; then
git $@
else
git status
fi
}
compdef g=git