Domanda

I have newly installed Git for Windows on Windows 8.1. In Git Bash, when I run help commands like git help diff or git diff --help the corresponding .html help file will open in the program I have associated with .html file extensions, regardless of my help.browser and web.browser Git configuration properties.

My Git configuration:

git config --global help.browser chrome    
git config --global web.browser chrome    

My Windows Default Programs file extension association: .html opens with Sublime Text

So, git diff --help in Git Bash opens git-diff.html in Sublime Text. I want it to open in Chrome.

The source of this might be another problem: when I do the command git web--browse URL/FILE (e.g. git web--browse index.html) I get

$ The browser chrome is not available as 'chrome'

git-web--browse documentation: http://git-scm.com/docs/git-web--browse.html

I found this question: How can I configure git help to use Firefox? but that didn't work for me (maybe because I'm running Windows). I tried this:

git config --global help.browser chr
git config --global browser.chr.cmd "start chrome"

Does anyone know of a solution that will allow me to open the help files in Chrome instead of Sublime Text?

È stato utile?

Soluzione

It looks like there is no Git configuration that makes help commands open in the browser. Any Git configuration is overridden by Windows' .html filetype association. For explanation see this Google Group thread at msysGit https://groups.google.com/d/msg/msysgit/bBVP3DKyKzc/fpzK8moJXOgJ

Altri suggerimenti

I had the same problem, also using Git for Windows running Windows 8.1. The following worked for me:

Change the app that Windows uses by default for files of type .html and .htm. For instructions on that see: http://windows.microsoft.com/en-us/windows-8/choose-programs-windows-uses-default .

Set browser.chrome.path explicitly:

browser..path

You can explicitly provide a full path to your preferred browser by setting the configuration variable browser..path. For example, you can configure the absolute path to firefox by setting browser.firefox.path. Otherwise, git web--browse assumes the tool is available in PATH.

Use the following method to solve the problem(running on windows10): Find the default app settings, click 'choose default apps by file type' and change the default app for .htm and .html to the app you want. No need to config the git.

choose default app

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top