Last active
October 5, 2015 23:47
-
-
Save aqualungdesign/2897283 to your computer and use it in GitHub Desktop.
Meu arquivo .bash_profile
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@\W]" | |
export CLICOLOR=1 | |
export LSCOLORS="cxfxcxdxbxegedabagacad" | |
alias q='exit' | |
alias subl='open -a "Sublime Text 2"' | |
alias saf='open -a "Safari"' | |
alias psd='open -b "com.adobe.Photoshop"' | |
alias mail='open -a "Gmail"' | |
alias text='open -a "TextEdit"' | |
alias ..='cd ..' | |
alias ...='cd ../..' | |
alias ....='cd ../../..' | |
alias .....='cd ../../../..' | |
alias tabs='vim -p' | |
# ------------------------------------------------------------------- | |
# Git aliases | |
# ------------------------------------------------------------------- | |
alias ga='git add --all' | |
alias gp='git push' | |
alias gl='git log' | |
alias gs='git status' | |
alias gd='git diff' | |
alias gm='git commit -m' | |
alias gma='git commit -am' | |
alias gb='git branch' | |
alias gc='git checkout' | |
alias gra='git remote add' | |
alias grr='git remote rm' | |
alias gpu='git pull' | |
alias gcl='git clone' | |
alias gta='git tag -a -m' | |
alias gf='git reflog' | |
# leverage an alias from the ~/.gitconfig | |
alias gh='git hist' | |
alias glg1='git lg1' | |
alias glg2='git lg2' | |
alias glg='git lg' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment