git config –global core.longpaths true
–global是该参数的使用范围,只想对本版本库设置该参数,上述命令中去掉–global
也可以仅设置当前项目:
git config core.longpaths true
查看设置状态:
git config core.longpaths
或者直接修改git configure file
git config –global core.longpaths true
–global是该参数的使用范围,只想对本版本库设置该参数,上述命令中去掉–global
也可以仅设置当前项目:
git config core.longpaths true
查看设置状态:
git config core.longpaths
或者直接修改git configure file