我正在尝试设置git instaweb
以在Chrome中打开。我已经设置了默认浏览器:
git config --global web.browser chrome
此更改反映在我的全局.gitconfig
中,git-web--browse文档说明Chrome可以作为传递内容提供。
当我运行git instaweb
时,这就是我得到的:
The browser chrome is not available as 'chrome'.
http://127.0.0.1:1234
我也试过了google-chrome
,结果也是如此。如何将Web浏览器设置为实际以chrome格式打开?
运行OSX 10.8.2
答案 0 :(得分:3)
也许它需要类似于How can I configure git help to use Firefox?的解决方案:
git config --global web.browser ch
git config --global browser.ch.cmd "open -a Google Chrome.app"
OP MishieMoo reports您需要完整路径:
git config --global browser.ch.cmd "open -a \"/Applications/Google Chrome.app\""
没有绝对路径,它试图在我当前目录中打开
Chrome.app
(不是Applications
)