vscode SVN not found. Install it or configure it using the svn.path

时间:2024-04-02 21:42:35

问题

vscode SVN not found. Install it or configure it using the svn.path

解决方案

一般 svn 命令行工具 安装了, 就不需要再settings.json 中配置了。

安装 svn 命令行工具。(下面又安装教程)

如果还不行的话, 可能是安装路径问题, 如下配置安装路径即可。

vscode 中 settins.json 中 配置 : "svn.path": "c:\\Program Files\\TortoiseSVN\\bin\\svn.exe"

{
“editor.fontSize”: 18,
“svn.path”: “c:\Program Files\TortoiseSVN\bin\svn.exe”,
“svn.enableProposedApi”: “product”,
“workbench.iconTheme”: “vscode-icons”,
“emmet.triggerExpansionOnTab”: true
}

svn 命令行工具安装

查看对应目录 确实没有 svn.exe 文件

vscode SVN not found. Install it or configure it using the svn.path

svn 命令行 工具没有安装
我们修复下即可

修复 svn 安装

  1. 选中 modify
    vscode SVN not found. Install it or configure it using the svn.path

  2. 点击差号, 然后选中第一个 安装即可。

显然 svn 命令行客户端没有安装
vscode SVN not found. Install it or configure it using the svn.path

  1. 安装过后, svn.exe 执行文件出现了
    vscode SVN not found. Install it or configure it using the svn.path

成功了

vscode SVN not found. Install it or configure it using the svn.path