prompt now start with (base), what is it for ?
I git pulled latest changes to .bash-git-prompt and now see (base) in front of the prompt when I use the default theme. What does it stand for ? How could I remove it ?

I wished I could add the host name and eventually the username (e.g. toto@home) in front of the first line prompt. How could I do that ? Is it related to this "(base)" prefix ?
Solved the user and host name question by defining the following in my theme:
PathShort="\u@\h:\w"
The base here defines the conda environment you are currently on. Read.
Thank you very much.
@scheleon, in the referenced answer, it is advised to disable the changeps1 configuration variable.
I used the command conda config --set changeps1 False, which creates a .condarc file containing changeps1: false.
Unfortunately, bash-git-prompt still show the (base) prefix. I suspect it is due to the presence of the CONDA_DEFAULT_ENV environment variable which has the value base. There is no CONDA environment variable specifying if the PS1 should be changed or not.
It seam that the only solution is to not activate conda in the bashrc. But as soon as I start CONDA, the (base) prompt will show everywhere. Why not showing it only if it’s different from base ?