Created
September 4, 2016 23:07
-
-
Save afucher/8c005d7f4cffc965eb7d4a4e77edae4e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias workrebase="git checkout master && git pull origin master && git checkout work && git rebase master" | |
alias worksync="workrebase && git checkout master && git merge work && git push origin master && git checkout work" | |
alias workghpagesrebase="git checkout gh-pages && git pull origin gh-pages && git checkout work && git rebase gh-pages" | |
alias workghpagessync="workghpagesrebase && git checkout gh-pages && git merge work && git push origin gh-pages && git checkout work" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment