Skip to content

Instantly share code, notes, and snippets.

@wezm
Created March 30, 2009 10:04
Show Gist options
  • Save wezm/87724 to your computer and use it in GitHub Desktop.
Save wezm/87724 to your computer and use it in GitHub Desktop.
Git related bash config
# http://henrik.nyh.se/2008/12/git-dirty-prompt
# http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/
# username@Machine ~/dev/dir[master]$ # clean working directory
# username@Machine ~/dev/dir[master*]$ # dirty working directory
# bash-completion
if [ -f /opt/local/etc/bash_completion ]; then
. /opt/local/etc/bash_completion
fi
function parse_git_dirty {
git diff --quiet HEAD &>/dev/null
[[ $? == 1 ]] && echo "⚡"
}
function parse_git_branch {
local branch=$(__git_ps1 "%s")
[[ $branch ]] && echo "[$branch$(parse_git_dirty)]"
}
export PS1='\[\033[1;33m\]\w\[\033[0m\]$(parse_git_branch)$ '
alias g='git'
alias gs='git status'
alias gc='git commit'
alias gca='git commit -a'
alias ga='git add'
alias gco='git checkout '
alias gb='git branch'
alias gm='git merge'
alias gd="git diff"
complete -o default -o nospace -F _git_branch gb
complete -o default -o nospace -F _git_checkout gco
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment