git init。致命:无法统计...不是目录

时间:2019-02-28 14:13:26

标签: git

尝试初始化git存储库并收到错误-

  

致命:无法统计'... /。git / description':不是目录。

所以我执行'ls -a'并看到它创建了我的.git文件夹,但是它是空的。 所以我找出来,然后进入其中并创建一个名为 “描述”。 然后,我从.git文件夹爬出回到我的项目文件夹,然后再次尝试git init。 这次,它给了我一个相同的错误,但目录名称不同(我认为是因为它找到了“描述”)。 因此,我对该文件夹尝试了同样的操作。 在我下一次尝试时,关于另一个丢失的文件夹,我收到相同的错误。 现在,我对.git文件夹中的内容不了解太多,但是我得出的结论是,我不应该在.git中创建这些子文件夹。 有人知道怎么了吗? 以下是我的.gitconfig文件的内容:

[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[core]
askpass = git-gui--askpass

我找到了这个问题,但是这里的OP只是不知道如何查看.git文件夹:git init will not create git directories for me

我还没有发现其他与我的问题直接相关的东西。

编辑: 刚刚确认git init在我的C:/驱动器上的目录中有效。我的F:/驱动器(网络驱动器)上会出现此问题。这可能是问题吗?

操作系统:Windows 10 Git:git版本2.20.1.windows.1

到目前为止,我已经找到有关如何安装F:驱动器的信息,尽管我尚不确定它的含义:

F:\>df
Filesystem                                     1K-blocks        Used  Available Use% Mounted on
C:/Users/di203179/AppData/Local/Programs/Git   124418044    94816860   29601184  77% /
F:                                           18253611008 14182661885 4070949124  78% /f
N:                                           16106127360 10468462200 5637665160  65% /n





F:\>mount
C:/Users/di203179/AppData/Local/Temp on /tmp type ntfs (binary,noacl,posix=0,usertemp)
C:/Users/di203179/AppData/Local/Programs/Git on / type ntfs (binary,noacl,auto)
C:/Users/di203179/AppData/Local/Programs/Git/usr/bin on /bin type ntfs (binary,noacl,auto)
C: on /c type ntfs (binary,noacl,posix=0,user,noumount,auto)
F: on /f type cifs (binary,noacl,posix=0,user,noumount,auto)
N: on /n type cifs (binary,noacl,posix=0,user,noumount,auto)

0 个答案:

没有答案