本文主要是介绍DORIS - 克隆代码异常(Clone succeeded, but checkout failed),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
描述
Clone succeeded, but checkout failed. You can inspect what was checked out with 'git status' and retry with 'git restore --source=HEAD :/'
原因
由于文件名太长,git clone 执行成功,git checkout 失败。
方案
A. 先执行:
git config --system core.longpaths trueB. 再克隆:
git clone https://github.com/doris.git
这篇关于DORIS - 克隆代码异常(Clone succeeded, but checkout failed)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!