Search code examples
phpshellgit-bashlaravel-artisanwindows-shell

Hide 'm' from git bash windows


I am querying in database via Tinker in Git Bash windows shell but the output result with time makes me unreadable(actually hard to read) the data.

Is there any way I can hide the running time?

Thanks in advance.

Those running time makes me unreadable!


Solution

  • The windows CMD prompt term does not interpret ANSI escape sequences.

    You can either:

    • try and use ansicon
    • or desactivate colors (use git config --global to desactivate them in all repos)

      git config --global color.ui false
      

    The OP points to an alternative cmd wrapper: cmder.net.