sourceTree git 空目录从远程仓库克隆代码出现warning: templates not found
Posted sanduweiliangxtx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sourceTree git 空目录从远程仓库克隆代码出现warning: templates not found相关的知识,希望对你有一定的参考价值。
解决办法:
在安装git时没有默认安装到c盘,而是安装到了d盘。在使用SourceTree进行代码克隆时提示warning: templates not found in D:softwaredevelopmentGitsharegit-core 按照提示给出的路径去查找确实没有查找到该路径。然后在Git文件夹下查找templates,发现实际目录为D:Program FilesGitmingw64sharegit-core emplates。因此要在git中重新设置一下templated选项,具体设置方法有两种:
使用git命令去设置
在命令行中输入以下命令 设为你本地的git仓库目录,比如我想使用 D:workwfkjprojectgitrepo 这个目录作为我本地的git仓库,那么运行下面的命令或者修改 配置文件
git config --global init.templatedir D:/work/wfkj/project/gitrepo
这里注意应用的是“/”
在git配置文件中修改
一般git时会生成一个C:Users<登录用户名>.gitconfig文件。在该文件中加入以下代码
[init]
templatedir=D:/work/wfkj/project/gitrepo
注意[init]不能缺少,并需要注意应用的是“/”
设置完后重启SourceTree。
作者:karlZh_寻易
来源:CSDN
原文:https://blog.csdn.net/zhaochengxu/article/details/78952496
版权声明:本文为博主原创文章,转载请附上博文链接!
以上是关于sourceTree git 空目录从远程仓库克隆代码出现warning: templates not found的主要内容,如果未能解决你的问题,请参考以下文章