Commit 7f350da5 authored by Robby Russell's avatar Robby Russell
Browse files

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

parent fca8b7e3
...@@ -29,3 +29,4 @@ function current_branch() { ...@@ -29,3 +29,4 @@ function current_branch() {
# these aliases take advangate of the previous function # these aliases take advangate of the previous function
alias ggpull='git pull origin $(current_branch)' alias ggpull='git pull origin $(current_branch)'
alias ggpush='git push origin $(current_branch)' alias ggpush='git push origin $(current_branch)'
alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment