'core.longpaths' 的错误数字配置值 'tru':无效单位
bad numeric config value 'tru' for 'core.longpaths': invalid unit
我无法在 sourcetree 上启动存储库。
我得到:
bad numeric config value 'tru' for 'core.longpaths': invalid unit
这是在我尝试克隆一个长文件名的项目后发生的。
然后我尝试启用“core.longpaths
”。
请问如何解决?
只需在 $HOME
中编辑名为 .gitconfig
的全局 git 配置(或 Windows 上的 %USERPROFILE%
)
您需要在全局设置中将 tru
替换为 true
或 delete core.longpaths
。
在命令行中,you can also type:
git config --global unset core.longpaths
cd /path/to/my/repo
git config core.longpaths true
检查您的 SourceTree 设置:确保它使用的是系统的 Git 而不是嵌入式的。
我无法在 sourcetree 上启动存储库。
我得到:
bad numeric config value 'tru' for 'core.longpaths': invalid unit
这是在我尝试克隆一个长文件名的项目后发生的。
然后我尝试启用“core.longpaths
”。
请问如何解决?
只需在 $HOME
中编辑名为 .gitconfig
的全局 git 配置(或 Windows 上的 %USERPROFILE%
)
您需要在全局设置中将 tru
替换为 true
或 delete core.longpaths
。
在命令行中,you can also type:
git config --global unset core.longpaths
cd /path/to/my/repo
git config core.longpaths true
检查您的 SourceTree 设置:确保它使用的是系统的 Git 而不是嵌入式的。