Browse code

Merge pull request #575 from mr-szymanski/master

Add git alias

Robby Russell authored on 31/08/2011 at 04:04:04
Showing 1 changed files
... ...
@@ -29,6 +29,10 @@ 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
34
+alias ga='git add'
35
+compdef _git ga=git-add
32 36
 
33 37
 # Git and svn mix
34 38
 alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'