问题:
Mac下,sourcetree克隆代码报错:warning templates not found /usr/local/git/share/git-core/templates
解决方案:
1、终端输入:open /usr/local/,查看该目录发现没有git文件夹;
2、创建对应文件夹,并赋值权限(依次输入如下命令):
sudo mkdir -p /usr/local/git/share/git-core/templates
sudo chmod -R 755 /usr/local/git/share/git-core/templates
3、再次克隆,成功。
网友评论