Created
November 14, 2012 12:42
-
-
Save antoniorosado/4071887 to your computer and use it in GitHub Desktop.
git and bash alias
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
# Add on the top of the ~/.bash_profile on mountain Lion and ~/.bashrc on ubuntu | |
# colors on the terminal | |
#export CLICOLOR=1 | |
#export LSCOLORS=GxFxCxDxBxegedabagaced | |
export TERM="xterm-color" | |
PS1='\[\e[0;33m\]\u\[\e[0m\]@\[\e[0;32m\]\h\[\e[0m\]:\[\e[0;34m\]\w\[\e[0m\]\$ ' | |
# terminal related alias | |
alias ls='ls -lisa' | |
# git related alias | |
alias gc='git commit -am ' | |
alias gp='git push origin master' | |
alias gph='git push heroku master' | |
alias gco='git checkout ' | |
alias gs='git status' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment