当从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
这样的标准命令也没有任何用处。
有什么我可以做这个回购,使其正常工作?
我应该问回购所有者/有人谁有它拉和工作,以解决它之前,再次拉它?怎么做?
1条答案
按热度按时间c7rzv4ha1#
我能问你用的是什么操作系统吗?如果你有windows看起来像它不允许你传递一些文件名格式:
发现另一篇使用
git config --global core.symlinks false
的文章,希望它能工作:Why is clone succeeded, but checkout failed?