Skip to content

Instantly share code, notes, and snippets.

@kitzberger
Created May 13, 2019 07:50
Show Gist options
  • Save kitzberger/a05f0f985fb3e766f45604eafc4f87fd to your computer and use it in GitHub Desktop.
Save kitzberger/a05f0f985fb3e766f45604eafc4f87fd to your computer and use it in GitHub Desktop.
git prompt
# Load one of these files
source /usr/lib/git-core/git-sh-prompt
source /usr/share/git-core/contrib/completion/git-prompt.sh
source /usr/local/git/contrib/completion/git-prompt.sh
source /etc/bash_completion.d/git
# Set flags
GIT_PS1_SHOWDIRTYSTATE=true
GIT_PS1_SHOWUNTRACKEDFILES=true
# Define prompt
PS1="${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\[\033[31m\]\$(__git_ps1)\[\033[00m\]$ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment