0

I am typing the command php artisan in my Git Bash to get the help, but I am getting an awful output.

Is there a way to fix that ?

php artisan output

Scott Weldon
  • 9,673
  • 6
  • 48
  • 67
Olivertech
  • 567
  • 2
  • 4
  • 24
  • 3
    those are terminal escape sequences for colors or something. e.g. you've got a bad terminal setting and the output doesn't conform to what your terminal window supports. – Marc B Sep 30 '16 at 20:58

1 Answers1

0

I believe the problem is due the Git Bash doesn't select anything when it's on "Default" Locale, and "Default" Character set.

Changing to "en-US" and "UTF-8" solved the problem for me:

enter image description here

Steps in text:

  1. Open Git Bash
  2. Right click top bar--> "Options"
  3. on Left Side, Select "Text"
  4. Change Locale to "en_US" and Chracter set to "UTF-8"
  5. Apply/Save. Done.
bibi
  • 3,671
  • 5
  • 34
  • 50