Some new aliases: "bake" for bundle exec rake, "staging" for getting into a heroku cedar staging console, "production" for same thing, diff env

This commit is contained in:
Dan Croak 2011-10-22 20:43:57 -03:00
parent b89501eede
commit 9495c56e81

View file

@ -10,12 +10,15 @@ alias gci="git pull --rebase && rake && git push"
alias tlf="tail -f"
alias b="bundle"
alias be="bundle exec"
alias bake="bundle exec rake"
alias ln='ln -v'
alias mkdir='mkdir -p'
alias ...='../..'
alias l='ls'
alias ll='ls -al'
alias lh='ls -Alh'
alias staging='heroku run console --remote staging'
alias production='heroku run console --remote production'
alias -g G='| grep'
alias -g M='| less'