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?
Asked
Active
Viewed 26 times
0

Tobias Kienzler
- 25,759
- 22
- 127
- 221
-
`git help help` worth looking into – Himal Feb 04 '15 at 10:03
1 Answers
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