Changed default value to true for SCM_GIT_SHOW_DETAILS

pull/389/head
Eduardo Bellido Bellido 2015-01-06 12:57:57 +01:00
parent 5632575efe
commit 418e6fae14
4 changed files with 3 additions and 5 deletions

View File

@ -71,11 +71,11 @@ Bash it can show some information about Git repositories in the shell prompt: th
Additionally, you can view the status of your working copy and get the count of staged, unstaged and untracked files. This feature is controlled through the flag `SCM_GIT_SHOW_DETAILS` as follows:
Set `SCM_GIT_SHOW_DETAILS` to 'true' to **show** the working copy details in your prompt:
Set `SCM_GIT_SHOW_DETAILS` to 'true' (the default value) to **show** the working copy details in your prompt:
* `export SCM_GIT_SHOW_DETAILS=true`
Set `SCM_GIT_SHOW_DETAILS` to 'false' (the default value) to **don't show** it:
Set `SCM_GIT_SHOW_DETAILS` to 'false' to **don't show** it:
* `export SCM_GIT_SHOW_DETAILS=false`

View File

@ -13,7 +13,7 @@ SCM_THEME_TAG_PREFIX='tag:'
SCM_THEME_COMMIT_PREFIX='commit:'
SCM_THEME_REMOTE_PREFIX=''
SCM_GIT_SHOW_DETAILS=${SCM_GIT_SHOW_DETAILS:=false}
SCM_GIT_SHOW_DETAILS=${SCM_GIT_SHOW_DETAILS:=true}
SCM_GIT='git'
SCM_GIT_CHAR='±'

View File

@ -9,7 +9,6 @@ VIRTUALENV_THEME_PROMPT_COLOR=35
SCM_NONE_CHAR=""
SCM_GIT_CHAR="⎇ "
SCM_GIT_SHOW_DETAILS=true
SCM_THEME_PROMPT_CLEAN=""
SCM_THEME_PROMPT_DIRTY=""

View File

@ -11,7 +11,6 @@ VIRTUALENV_THEME_PROMPT_COLOR=35
SCM_NONE_CHAR=""
SCM_GIT_CHAR=" "
SCM_GIT_SHOW_DETAILS=true
SCM_THEME_PROMPT_CLEAN=""
SCM_THEME_PROMPT_DIRTY=""