Created
October 7, 2011 16:00
-
-
Save dabit/1270654 to your computer and use it in GitHub Desktop.
Useful aliases
This file contains 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
alias gs="git status" | |
alias gc="git commit" | |
alias gp="git push" | |
alias gpl="git pull" | |
alias r=rails | |
alias ga="git add" | |
alias gr="git rm" | |
alias clean="find . -name \"*.orig\" -print -exec rm {} \;" | |
alias be="bundle exec" | |
alias ber="bundle exec rake" | |
alias cuke="be cucumber -rfeatures -fprogress" | |
alias cake="rake" | |
alias tag="ctags -R app lib" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment