plugins/git/git.plugin.zsh
3cf9ab72
 # Aliases
 alias g='git'
 alias gst='git status'
 alias gl='git pull'
 alias gup='git fetch && git rebase'
 alias gp='git push'
 alias gd='git diff | mate'
 alias gdv='git diff -w "$@" | vim -R -'
 alias gc='git commit -v'
 alias gca='git commit -v -a'
8edf4173
 alias gco='git checkout'
3cf9ab72
 alias gb='git branch'
 alias gba='git branch -a'
 alias gcount='git shortlog -sn'
 alias gcp='git cherry-pick'
dfbed8fd
 alias glg='git log --stat --max-count=5'
3cf9ab72
 
 # Git and svn mix
 alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'
 
27904c11
 #
 # Will return the current branch name
 # Usage example: git pull origin $(current_branch)
 #
 function current_branch() {
   ref=$(git symbolic-ref HEAD 2> /dev/null) || return
   echo ${ref#refs/heads/}
 }
 
1a8ceef5
 # these aliases take advantage of the previous function
3cf9ab72
 alias ggpull='git pull origin $(current_branch)'
 alias ggpush='git push origin $(current_branch)'
1a8ceef5
 alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'