Created
June 5, 2012 17:23
-
-
Save woodbridge/2876363 to your computer and use it in GitHub Desktop.
sane .bashrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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