Created
April 1, 2010 00:37
-
-
Save shiftb/351148 to your computer and use it in GitHub Desktop.
My default aliases
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
# In ~/.bash_aliases | |
## Git | |
alias g='git' | |
alias gcb='git checkout -b' | |
alias gpp="git pull && git push && git push --tags" | |
## Shell | |
alias ll='ls -lh' | |
alias reload='. ~/.bash_login' | |
alias tf='tail -f -n 100' | |
alias la='ls -A' | |
alias l='ls -CF' | |
alias tree='find . -print | grep -v '\''.git'\'' | sed -e '\''s;[^/]*/;|____;g;s;____|; |;g'\''' | |
## Ruby | |
alias grind='gem install --no-rdoc --no-ri' |
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
# Put this in ~/.bash_login | |
if [ -f ~/.bash_aliases ]; then | |
. ~/.bash_aliases | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment