Skip to content

Instantly share code, notes, and snippets.

View mateuszgachowski's full-sized avatar
👋

Mateusz Gachowski mateuszgachowski

👋
View GitHub Profile
@mateuszgachowski-snippets
mateuszgachowski-snippets / .bash_profile.sh
Created December 4, 2013 18:10
Bash: Sample .bash_profile
# Bash #
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
PS1='\[\033[01;32m\]\u@\[\033[01;36m\] \W \[\033[01;33m\]$(parse_git_branch)\[\033[01;34m\] \$\[\033[00m\] '
# Aliases #
alias ls='ls -G -S -F'
alias ..='cd ..'