SourceTree报错: templates not found in /usr/local/git/share/git-core/templates

今天clone Git上面的项目的时候 sourcetree 报错,克隆失败,错误如下

templates not found in /usr/local/git/share/git-core/templates

开始查资料,工夫不负查资料的人啊

直接开始

在终端输入 ‍‍

open‍‍ /usr/local/  

或者直接前往文件夹

/usr/local/
image.png

如果没有Git这个文件夹
两种解决办法
-1.下载 git-osx 并安装,
http://git-scm.com/download/mac
-2.直接创建对应的文件夹并给与权限

sudo mkdir -p /usr/local/git/share/git-core/templates

最后再去,如果有Git,也要执行下面这个,因为可能没有赋予权限

sudo chmod -R 755 /usr/local/git/share/git-core/templates

OK,继续克隆,完美

你可能感兴趣的:(SourceTree报错: templates not found in /usr/local/git/share/git-core/templates)