git: unable to checkout working tree error: unable to create file Filename too long on windows
一,问题:
文件名太长了,导致git checkout失败
二,解决方案:
git config --system core.longpaths true
This will allow file paths of 4096 characters.
一,问题:
文件名太长了,导致git checkout失败
二,解决方案:
git config --system core.longpaths true
This will allow file paths of 4096 characters.