0

When I enter command such as git config --help, instead of showing help directly I end up with a browser-launch showing an HTML help. While that surely looks fancy, it's usually not what I want. So how can I have msysgit's help behave just the way it does on Linux?

Tobias Kienzler
  • 25,759
  • 22
  • 127
  • 221

1 Answers1

0

Git has it's own tool called git web--browse that invokes the web-browser. Set the environment GIT_TRACE to see what processes are started, and with what command-lines.

So that can help debugging the issue.

A workaround can be to rename/delete all git-<command>.html files so git will not find them

CodeWizard
  • 128,036
  • 21
  • 144
  • 167