当我尝试从 cmd 结帐到另一个分支时:
git checkout Datascience_With_Python --
发生此错误:
error: invalid path 'Datascience_With_Python/Machine Learning/Tutorials/Steps for Machine Learning "MLOps"/README.md'
error: invalid path 'Datascience_With_Python/Machine Learning/Tutorials/Steps for Machine Learning "MLOps"/Steps_For_Machine_Learning_MLOps.ipynb'
我认为这是因为文件夹名称“机器学习的步骤“MLOps”中的逗号”但我无法编辑它,因为它是一个开源项目,我只能在特定文件夹中工作特定的分支。
我试过了:
git clone --sparse -c core.protectNTFS=false -n <repo-URL>
git checkout <branch>
但它从我的本地仓库克隆中删除了所有文件夹。
我也试过:
git config core.protectNFTS false
git config core.sparsecheckout true
但它也没有奏效。
请帮忙...