Jak usunąć nazwa pliku zbyt długi błąd w git

#this
git config --system core.longpaths true

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