Adding a ggpnp which does a git pull followed by a git push.

master
Robby Russell 16 years ago
parent fca8b7e3e6
commit 7f350da5b7
  1. 1
      plugins/git.plugin.zsh

@ -29,3 +29,4 @@ function current_branch() {
# these aliases take advangate of the previous function
alias ggpull='git pull origin $(current_branch)'
alias ggpush='git push origin $(current_branch)'
alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'
Loading…
Cancel
Save