Cómo eliminar el nombre de archivo Error demasiado largo en Git

#this
git config --system core.longpaths true

#or this
git clone -c core.longpaths=true <repo-url>
Excited Elephant