Browse code

Add gss alias for git status -s

Mark Szymanski authored on 27/08/2011 at 21:16:51
Showing 1 changed files
... ...
@@ -29,6 +29,8 @@ alias glg='git log --stat --max-count=5'
29 29
 compdef _git glg=git-log
30 30
 alias glgg='git log --graph --max-count=5'
31 31
 compdef _git glgg=git-log
32
+alias gss='git status -s'
33
+compdef _git gss=git-status
32 34
 
33 35
 # Git and svn mix
34 36
 alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'