Browse code

Merge pull request #631 from danshearmur/git-merge-alias

added git merge as gm

Robby Russell authored on 10/10/2011 at 12:35:16
Showing 1 changed files
... ...
@@ -33,6 +33,8 @@ alias gss='git status -s'
33 33
 compdef _git gss=git-status
34 34
 alias ga='git add'
35 35
 compdef _git ga=git-add
36
+alias gm='git merge'
37
+compdef _git gm=git-merge
36 38
 
37 39
 # Git and svn mix
38 40
 alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'