From 9495c56e81fb6294bd46f6ddc1186f963574c6e2 Mon Sep 17 00:00:00 2001 From: Dan Croak Date: Sat, 22 Oct 2011 20:43:57 -0300 Subject: [PATCH] Some new aliases: "bake" for bundle exec rake, "staging" for getting into a heroku cedar staging console, "production" for same thing, diff env --- aliases | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aliases b/aliases index bcb5f49973..d40427f7ac 100644 --- a/aliases +++ b/aliases @@ -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'