【Git】fatal: bad boolean config value ‘true~‘ for ‘core.longpaths‘

windwos操作系统git config设置错了参数值,解决方法。

出现原因

在拉取代码时,仓库中存在文件名过长得文件,拉取报错了“filename too long”
解决

git config --system core.longpaths true

结果在复制命令时,粘贴到命令行多了一个符号。
再次进行执行上面得命令,执行报错。
【Git】fatal: bad boolean config value ‘true~‘ for ‘core.longpaths‘_第1张图片

解决

找到git安装目录下的gitconfig文件,修改对应得参数即可
【Git】fatal: bad boolean config value ‘true~‘ for ‘core.longpaths‘_第2张图片
【Git】fatal: bad boolean config value ‘true~‘ for ‘core.longpaths‘_第3张图片

验证

【Git】fatal: bad boolean config value ‘true~‘ for ‘core.longpaths‘_第4张图片
在这里插入图片描述

你可能感兴趣的:(Git,git)