Git clone 尝试将文件视为目录?

Git clone trying to treat a file like it's a directory?

我正在尝试从 Visual Studio 2019 克隆我们在本地 Ubuntu 服务器上托管的 git 存储库。我能够从同一个存储库克隆其他存储库服务器,但我特别遇到这个错误,这没有任何意义。可能是错误,可能是配置问题。

这是错误日志(出于安全原因编辑了路径):

Cloning into 'C:\Users\my_username\Documents\Projects\ProjectName'...
Warning: error opening directory '\GitServer\Repo\ProjectName/objects/incoming-a01148/47/c4f1223ef91fff4cf45f549beff2fff5656fad/': Function not implemented
Error encountered while cloning the remote repository: Git failed with a fatal error.
failed to iterate over '\GitServer\Repo\ProjectName/objects/'

对我来说没有意义的是“.../objects/incoming-a01148/47/c4f1223ef91fff4cf45f549beff2fff5656fad”是一个文件,它看起来像在尝试迭代它,就好像它是一个目录一样?

在克隆过程中使用 file://GitServer/Repo/ProjectName 而不是 \GitServer\Repo\ProjectName 似乎已经解决了问题。