安装后无法使用 git

安装后无法使用 git

我已经在桌面上安装了 git,当我尝试在 git 上执行任何 git 命令时,出现此错误“C:\ProgramData/Git/config”的所有者可疑

另外,由于这是我的临时桌面,因此我无法在此桌面上使用管理员帐户。有人可以帮忙解决这个问题吗?

我可以删除配置文件然后尝试再次安装吗

答案1

我们也遇到了这个问题。

如果文件 C:\ProgramData/Git/config 不存在,则使用以下内容创建它:

[core]
    symlinks = false
    autocrlf = true
    fscache = true
[color]
    diff = auto
    status = auto
    branch = auto
    interactive = true
[help]
    format = html
[rebase]
    autosquash = true

在您的情况下,文件夹 Git 也不存在。

相关内容