Skip to content

Instantly share code, notes, and snippets.

@woodbridge
Created June 5, 2012 17:23
Show Gist options
  • Select an option

  • Save woodbridge/2876363 to your computer and use it in GitHub Desktop.

Select an option

Save woodbridge/2876363 to your computer and use it in GitHub Desktop.
sane .bashrc
export PS1="[\u@\h:\w] $ "
alias migrate='rake db:migrate'
alias ..='cd ..'
alias s='git status'
alias d='git diff'
alias r='git reset'
alias l='git log'
alias gs='git stash'
alias gad='git add .'
alias gca='git commit --amend'
alias gcm='git commit -m'
alias gdt='git difftool'
function reload() {
. ~/.bashrc
}
alias serve='python -m SimpleHTTPServer'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment