Created
March 31, 2014 16:32
-
-
Save micahwave/9896320 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# aliases | |
alias c="clear" | |
alias g="git" | |
alias gp="git push" | |
alias gu="git pull" | |
alias cdt="cd ~/Dropbox/WordPress/wp-content/themes/vip/time2014" | |
alias gphm="git push heroku master" | |
alias ....="cd ../../../" | |
alias ...="cd ../../" | |
alias ..="cd ../" | |
alias mongodb="/usr/local/mongodb/bin/mongod" | |
alias subl='/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl' | |
alias cw="compass watch" | |
alias gpom="git push origin master" | |
alias gpos="git push stage master" | |
alias rebase="git checkout master;git pull origin master;git checkout $1;git rebase master" | |
alias merge="git checkout master;git merge $1 --ff-only" | |
alias push="gpom;g push qa master" | |
# rvm | |
source ~/.rvm/scripts/rvm | |
### Added by the Heroku Toolbelt | |
export PATH="/usr/local/heroku/bin:$PATH" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment