vscode中git.path设置无效

  • Post author:
  • Post category:其他


1.问题描述:Unable to initialize Git; AggregateError(2) Error: Invalid Git configuration

快速找到git执行路径—-git-bash输入where git

vscode中设置了git.path的执行路径,但是依然报错

提示未找到git,请重新安装git

错误信息为:does not match the path and filename of a valid Git executable

2.解决方案:初始化gitconfig文件信息

全局搜索.gitconfig文件

删除该文件

然后管理员权限打开cmd

git config —

global

user.name “xxxxxx”

git config –global user.email “xxxxx@xxxx.com”

3.重新打开vscode,发现能关联git了

4.出现原因暂不明确,之前git使用一直是正常的,然后一次蓝屏过后就无法使用git



版权声明:本文为qq_38482205原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。