sourceTree git 空目錄從遠程倉庫克隆代碼出現warning: templates not found

  解決辦法:git

在安裝git時沒有默認安裝到c盤,而是安裝到了d盤。在使用SourceTree進行代碼克隆時提示warning: templates not found in D:\software\development\Git\share\git-core\ 按照提示給出的路徑去查找確實沒有查找到該路徑。而後在Git文件夾下查找templates,發現實際目錄爲D:\Program Files\Git\mingw64\share\git-core\templates。所以要在git中從新設置一下templated選項,具體設置方法有兩種:.net

使用git命令去設置
在命令行中輸入如下命令 設爲你本地的git倉庫目錄,好比我想使用 D:\work\wfkj\project\gitrepo 這個目錄做爲我本地的git倉庫,那麼運行下面的命令或者修改 配置文件命令行

git config --global init.templatedir D:/work/wfkj/project/gitrepo

這裏注意應用的是「/」blog

在git配置文件中修改
通常git時會生成一個C:\Users\<登陸用戶名>.gitconfig文件。在該文件中加入如下代碼it

[init]
templatedir=D:/work/wfkj/project/gitrepo

注意[init]不能缺乏,並須要注意應用的是「/」
設置完後重啓SourceTree。

做者:karlZh_尋易
來源:CSDN
原文:https://blog.csdn.net/zhaochengxu/article/details/78952496
版權聲明:本文爲博主原創文章,轉載請附上博文連接!登錄

相關文章
相關標籤/搜索