Use a shorter git status

This commit is contained in:
Oliver Davies 2020-01-17 11:31:38 +00:00 committed by GitHub
parent f55b955d5c
commit 47a04ad6f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ g() {
if [[ $# > 0 ]]; then
git $@
else
git status
git status --short --branch
fi
}