diff options
author | June McEnroe <june@causal.agency> | 2012-07-07 00:57:23 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2012-07-07 00:57:23 -0400 |
commit | 8177dae2737f44504c3e4ce5b5198e7ec7a93c30 (patch) | |
tree | 1ef4ec50fd59ca63dcd7568da5f573ecfa623f85 | |
parent | Make gs output terse (diff) | |
download | src-8177dae2737f44504c3e4ce5b5198e7ec7a93c30.tar.gz src-8177dae2737f44504c3e4ce5b5198e7ec7a93c30.zip |
Add gfrop command
-rw-r--r-- | .zshrc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.zshrc b/.zshrc index d4a85846..3a38aea6 100644 --- a/.zshrc +++ b/.zshrc @@ -143,6 +143,12 @@ alias irb='ripl' alias l='ls' alias t='task' +function gfrop { +git fetch +git rebase origin/master +git push origin master +} + setopt PROMPT_SUBST function prompt_task { |