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.

原文地址:https://www.cnblogs.com/woshare/p/14809275.html