Skip to content

Instantly share code, notes, and snippets.

@bralpassos
Created May 3, 2012 04:07
Show Gist options
  • Save bralpassos/2583071 to your computer and use it in GitHub Desktop.
Save bralpassos/2583071 to your computer and use it in GitHub Desktop.
PS1
# Prompt no formato:
# usuario@host ~/Diretorios $
# Em um repostiório git:
# usuario@host ~/projetos/git (dev) $
# Repostiório git após alguma alteração:
# usuario@host ~/projetos/git (dev %) $
if [ -f $GIT_COMPLETION_PATH]; then
GIT_PS1_SHOWDIRSTATE=true
GIT_PS1_SHOWUNTRACKEDFILES=true
fi
if [ "$color_prompt" = yes ]; then
PS1="\[\033[01;32m\]\u@\h\[\033[00m\] \e[0;33m\w\e[0;91m\$(__git_ps1 ' (%s)')\e[0;96m \$\e[0m "
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment