我无法在sourcetree上启动存储库。
我明白了:
bad numeric config value 'tru' for 'core.longpaths': invalid unit
在我尝试使用长文件名克隆项目后发生了这种情况
然后我尝试启用" core.longpaths
"。
如何解决它?
答案 0 :(得分:3)
只需在.gitconfig
(或Windows上的$HOME
)中编辑名为%USERPROFILE%
的全局git配置
您需要从全局设置中将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而不是嵌入式设置。