When I'm trying to checkout to another branch from cmd:
git checkout Datascience_With_Python --
this error is occuring:
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'
I think this is because of the inverted commas in the folder name 'Steps for Machine Learnin "MLOps"' But I can't edit it because it is an open-source project and I am only allowed to work on a particular folder in a particular branch.
I tried:
git clone --sparse -c core.protectNTFS=false -n <repo-URL>
git checkout <branch>
but its deleting all the folders from my local clone of the repo.
I also tried :
git config core.protectNFTS false
git config core.sparsecheckout true
But it also didn't work.
Please help...