Changed default value to true for SCM_GIT_SHOW_DETAILS
parent
5632575efe
commit
418e6fae14
|
|
@ -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`
|
||||
|
||||
|
|
|
|||
|
|
@ -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='±'
|
||||
|
|
|
|||
|
|
@ -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=""
|
||||
|
|
|
|||
|
|
@ -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=""
|
||||
|
|
|
|||
Loading…
Reference in New Issue