git clone 一直卡在百分之……卡在那下载失败。warning: templates not found /usr/local/git/share/git-core/templates警告...

建议先用sourcetree从远端clone一下,如果还是不动,可以在sourcetree双击你下载的项目。这时可以看到日志

这里提供一种日志的解决方案

warning: templates not found /usr/local/git/share/git-core/templates警告,导致克隆失败

解决方案

1、创建一下目录:在终端依次输入、回车,中间可能需要密码,输入密码回车即可

sudo mkdir /usr/local/git

sudo mkdir /usr/local/git/share

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

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

2、给以上创建的目录添加权限,在终端继续输入、回车

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

尝试再次clone

主要是提醒大家查看日志,不一定非得是sourcetree,其他工具也行,只要能看到日志,就能搜索解决方案

你可能感兴趣的:(git clone 一直卡在百分之……卡在那下载失败。warning: templates not found /usr/local/git/share/git-core/templates警告...)