Browse code

Add an alias for ga --> git add, too

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