Skip to content

Instantly share code, notes, and snippets.

@0xilly
Created November 2, 2014 04:33
Show Gist options
  • Save 0xilly/34f9ceae0d9898af1d16 to your computer and use it in GitHub Desktop.
Save 0xilly/34f9ceae0d9898af1d16 to your computer and use it in GitHub Desktop.
alias ls='ls --color=auto'
alias git=hub
GIT_PS1_SHOWDIRTYSTATE=1
GIT_PS1_SHOWSTASHSTATE=1
GIT_PS1_SHOWUNTRACKEDFILES=1
GIT_PS1_SHOWCOLORHINTS=TRUE
source /usr/share/git/completion/git-prompt.sh
PS1='[\u@\h] \e[0;36m\W\e[m$(__git_ps1 " (\e[0;33m%s\e[0m)")\$ '
get_dir() {
printf "%s" $(pwd | sed "s:$HOME:~:")
}
get_sha() {
git rev-parse --short HEAD 2>/dev/null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment