Last active
August 29, 2015 14:10
-
-
Save samuelcolvin/1f3965ac2e7c7b244997 to your computer and use it in GitHub Desktop.
bashrc
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
# history length: | |
HISTSIZE=10000 | |
HISTFILESIZE=20000 | |
# set by me | |
export PS1='\u:\W || ' | |
alias shortp="export PS1='\u:\W || '" | |
alias longp="export PS1='\u@\h:\# \w || '" | |
alias gs="git status" | |
alias gl="git log" | |
alias gb="git branch" | |
alias gm="git checkout master" | |
alias gp="git pull" | |
export GIT_EDITOR=/usr/bin/vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment