Skip to content

Instantly share code, notes, and snippets.

@gitaarik
Last active October 1, 2016 00:34
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gitaarik/af3216ab6abfc3173c49 to your computer and use it in GitHub Desktop.
Save gitaarik/af3216ab6abfc3173c49 to your computer and use it in GitHub Desktop.
native gitprompt
gitprompt() {
export GIT_PS1_SHOWDIRTYSTATE=true
export GIT_PS1_SHOWSTASHSTATE=true
export GIT_PS1_SHOWUNTRACKEDFILES=true
export GIT_PS1_SHOWUPSTREAM="auto"
export GIT_PS1_SHOWCOLORHINTS=true
export PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "'
. /usr/lib/git-core/git-sh-prompt
export PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment