Comment supprimer le nom de fichier trop long dans GIT

#this
git config --system core.longpaths true

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