Skip to content

Instantly share code, notes, and snippets.

@lubieniebieski
Created April 3, 2012 14:34
Show Gist options
  • Save lubieniebieski/2292474 to your computer and use it in GitHub Desktop.
Save lubieniebieski/2292474 to your computer and use it in GitHub Desktop.
Favourite terminal aliases
# bash/terminal
alias h=history
hf(){
grep "$@" ~/.bash_history
}
# rails
alias be='bundle exec'
alias bea='bundle exec autotest'
alias bu='bundle update'
alias bo='bundle open'
@wiktorschmidt
Copy link

alias gac="git add .; git commit -a -m"
alias gpp="git pull origin master; git push origin master"

@madsheep
Copy link

madsheep commented Apr 3, 2012

oh-my-zsh i niepotrzebne aliasy:

if [ -f `brew --prefix`/etc/autojump ]; then
    . `brew --prefix`/etc/autojump
fi
plugins=(git rails rails3 bundler)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment