git报错 warning: Clone succeeded, but checkout failed.
git clone 克隆成功,但签出失败
问题描述: unable to checkout working tree warning: Clone succeeded, but checkout failed. You can inspect what was checked out with 'git status' and retry with 'git restore --source=HEAD :/'
无法签出工作树警告:克隆成功,但签出失败。您可以使用“git status”检查签出的内容,然后使用“git restore–source=HEAD:/”重试
通俗来说就是文件名太长,无法签出工作树警告:克隆成功,但签出失败。
解决 运行cmd:
git config --system core.longpaths true
如果出现错误:
error: could not lock config file C:/Program Files/Git/etc/gitconfig: Permission denied
当前Windows登录用户没有 该文件的权限,需要添加权限
那就用管理员权限运行powerShell:
git config --system core.longpaths true
error invalid path 报错的解决方法
情形 1:使用 git clone
后,拉取的文件夹中只有 .git
文件夹,其他内容均没有拉下来。使用 git status -s
命令,可以看到所有文件都显示已被删除的状态。
情形 2:本地在[切换分支]时,出现error invalid path 报错信息,然后分支切换失败
问题原因
代码中包含 NTFS 文件系统不支持的文件名。(源代码可能是在 Mac 或 Linux 等其他系统下开发的)
Git 在 Windows 下默认开启了 NTFS 保护机制,导致包含不满足 NTFS 文件名的项目无法被成功拉取,且无法切换到这些不满足 NTFS 文件名规范的文件夹中。 ————————————————
解决方法
关闭 NTFS 保护机制的配置,操作命令如下:
git config --system core.protectNTFS false
关于这个配置,Git 的描述如下:If set to true, do not allow checkout of paths that would cause problems with the NTFS filesystem, e.g. conflict with 8.3 “short” names. Defaults to true on Windows, and false elsewhere.
开启该配置后,执行 git checkout 命令即可。在 checkout 时会打印这些文件拉取失败的日志,但能够成功拉取其他文件:
error: unable to create file folder_1/....../name_1.txt: No such file or directory error: unable to create file folder_1/....../name_2.txt: No such file or directory error: unable to create file folder_1/....../name_3.txt: No such file or directory
在拉取完成后,执行 git status -s 命令后,会显示这些不满足 NTFS 文件名的文件均为被删除的状态。 ————————————————
转载自:https://juejin.cn/post/7377672990408343561