Reputation: 198
I want to change the color of the bash but I dont know how to.
I tried with right clicking the bash but this just gave me the properties. Here a screenshot of my git bash:
Upvotes: 2
Views: 4874
Reputation: 4752
The screenshot in the question suggests it is about "Git Bash" (Windows specific, see https://gitforwindows.org/).
For some reasons I had once to explicitly set the TERM
environment variable to the value xterm
. That broke the output in "Git Bash" sessions which were started embedded in IntelliJ IDEA ("Terminal" tool), exactly like described in the posted question. The solution was to set the TERM
environment variable either to xterm-256color
(!) or to the default value (default for "Git Bash"), which is cygwin
.
If you need/want to permanently set the new value for the TERM
environment variable, the best solution would be to add export TERM=xterm-256color
to your ~/.bashrc
file.
Upvotes: 1
Reputation: 11
this worked for Laravel 6. *
composer require symfony/console:4.3.4
Upvotes: 1
Reputation: 8257
If you are using Git Bash on Windows you can changue color with these steeps:
The changes are permanent and only for the shortcut you have used to start Git Bash.
Upvotes: 1