From 47a04ad6f2fb923934a0f0de242f79bfd729919f Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Fri, 17 Jan 2020 11:31:38 +0000
Subject: [PATCH] Use a shorter git status

---
 tag-zsh/zsh/functions/g | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tag-zsh/zsh/functions/g b/tag-zsh/zsh/functions/g
index 494e716a..6b284290 100644
--- a/tag-zsh/zsh/functions/g
+++ b/tag-zsh/zsh/functions/g
@@ -4,7 +4,7 @@ g() {
   if [[ $# > 0 ]]; then
     git $@
   else
-    git status
+    git status --short --branch
   fi
 }