Git:克隆成功但 checkout 失败

oknwwptz  于 2023-05-12  发布在  Git
关注(0)|答案(1)|浏览(287)

当从gitlab提取repo时,我得到了以下错误:
warning: Clone succeeded, but checkout failed. You can inspect what was checked out with 'git status' and retry with 'git restore --source=HEAD :/'
运行命令:
git restore --source=HEAD :/
生产:
-global is not a valid attribute name: .gitattributes:2 error: unable to create file [filename_redacted]: Filename too long
.gitattributes第2行看起来像这样:
$ git config --global core.autocrlf true
当我在.gitattributes中编辑它时,它会自动重新出现。
当我发出git status时,我将从repo中获取所有已编辑的文件。像git reset这样的标准命令也没有任何用处。
有什么我可以做这个回购,使其正常工作?
我应该问回购所有者/有人谁有它拉和工作,以解决它之前,再次拉它?怎么做?

c7rzv4ha

c7rzv4ha1#

我能问你用的是什么操作系统吗?如果你有windows看起来像它不允许你传递一些文件名格式:

发现另一篇使用git config --global core.symlinks false的文章,希望它能工作:Why is clone succeeded, but checkout failed?

相关问题