Skip to content

Instantly share code, notes, and snippets.

@mtvillwock
Forked from jaredsmithse/alias
Last active August 29, 2015 14:13
Show Gist options
  • Save mtvillwock/90ff968b38495c6142e2 to your computer and use it in GitHub Desktop.
Save mtvillwock/90ff968b38495c6142e2 to your computer and use it in GitHub Desktop.
alias gs='git status'
alias gc='git commit -m'
alias gb='git branch'
alias gaa='git add --all'
alias gco='git checkout'
alias gpom='git push origin master'
alias gplom='git pull --rebase origin master'
alias ga='git add'
alias gd='git diff'
alias hdeploy='git push heroku master'
alias hconsole='heroku run rails console'
alias hmigrate='heroku run rake db:migrate --app'
alias desk='cd ~/Desktop'
alias dev='cd ~/Development'
alias dropbox='cd ~/Dropbox'
alias last='git reset head~1'
alias clearwork='git stash && git stash clear'
alias ep='vim ~/.bash_profile'
alias src='source ~/.bash_profile'
alias killds='find . -name "*.DS_Store" -type f -delete'
alias subl='/Applications/Sublime\ Text\ app/Contents/SharedSupport/bin/subl'
alias sd='/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl .'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment