如何在MacOS上为git.path配置VS Code?

时间:2018-07-18 08:15:47

标签: git macos

我在Mac上安装了VS Code,然后尝试将其连接到git。但是VS Code表示找不到git。

我尝试将variabele git.path修改为“ / usr / bin”(可以在其中看到git的安装位置)。但是,当启动VS Code时,它仍然指示git不存在。

2 个答案:

答案 0 :(得分:0)

我遇到了这个问题,能够通过安装Xcode命令行工具并更新VSCode的settings.json

来解决此问题。

您可以通过几种不同的方式打开此文件。我喜欢做 + Shift + P ,然后在命令面板中键入“ settings”: settings

如果您只想打开它,它的位置在这里:

$HOME/Library/Application Support/Code/User/settings.json

参考:Visual Studio Code User and Workspace Settings

然后将以下内容插入您的工作区设置(确保您合并了当前的配置,您可能在这里拥有):

{
    "git.path": "/usr/bin/git"
}

它看起来像这样:

workspace settings

现在关闭VSCode。如果要使用终端,则只需输入以下命令,但是如果愿意,可以使用GUI代替:

xcode-select --install

等待命令完成,然后启动VSCode。至此,我的问题已解决。希望这也对您有用!

由于我已经安装了XCode工具,因此不会再次显示对话框,但是您可以从下面引用的图像中看到它的外观。点击“安装”。

from http://railsapps.github.io/xcode-command-line-tools.html

从此处引用的命令和图像:http://railsapps.github.io/xcode-command-line-tools.html

答案 1 :(得分:0)

我在vscode github page上发现了与此相关的特定问题。问题提交者对此的解决方案对我有用,它是打开一个终端并键入以下命令

<!DOCTYPE html>
    <html lang="en" class="home">
    <head>
    	<meta charset="utf-8"/>
      <meta name="viewport" content="width=device-width,initial-scale=1">
    	<link rel="stylesheet" type="text/css" href="style.css">
    </head>
    <body>
    
      <nav class="nav">
        <div class="left">
          <a href="/">Title</a>
        </div>
        <div class="right">
          <a href="/">Link</a>
          <a href="/explore">Link</a>
        </div>
      </nav>
    
      <section>
          <div class="left column">
              1
          </div>
          <div class="right column">
          </div>
      </section>
      
      <footer>
        <p>Copyright &copy; 2019</p>
       </footer>
    </body>
    </html>

这将提示您阅读然后接受许可协议。完成此操作后,我重新启动了Visual Studio Code,并解决了我的问题。

显然,有一些微妙的问题使VS Code无法识别git(或者git是“有效的”?),直到xcodebuild许可证被接受为止。