【git】用git下载github项目失败werning : Clone succeeded, but checkout failed.
用git
下载github
上的大项目时,本地空间也足够,也安装LFS了,可还没有下载完就失败了,如下所示:
werning : Clone succeeded, but checkout failed.
you can inspect what was checked out with ' git status'
and retry the checkout with 'git checkout -f HEAD
遇到这种情况,用以下指令并没有什么用:
git status
git config core.longpaths true
git checkout -f .
有用的办法,只能重新下载,先输入以下指令:
git config --global core.longpaths true
然后删除全部文件,包括 .git 文件,最后重新下载开始:
git init
git clone 项目ssh地址
本文链接:https://my.lmcjl.com/post/2163.html
展开阅读全文
4 评论