[SourceTree] - 使用內置 Git 克隆項目出現 templates not found 問題之解決

背景git

使用 SourceTree 克隆 Asp.Net Core 項目失敗。工具

錯誤spa

warning: templates not found C:\Program Files\Git\share\git-core\templates..net

緣由code

SourceTree 尋找 template 文件的路徑不對,正確路徑應該爲 C:\Program Files\Git\mingw64\share\git-core\templatesblog

解決it

1. 在 SourceTree 的設置選項中沒找到設置 template 的地方,因而想辦法直接修改配置文件。class

2. 因爲SourceTree是調用了內置 Git,因而咱們去修改 Git 的配置文件。登錄

3. 在WIn10系統中,Git 的配置文件位於 C:\Users\<登陸用戶名>\.gitconfig 。使用文本編輯工具打開並加入以下幾行:配置

[init] 
templatedir=C:/Program Files/Git/mingw64/share/git-core/templates 

注意:路徑中的"\"要用"/"代替,否則會報錯。

保存並重啓SourceTree,問題解決。

參考資料

https://blog.csdn.net/sunux_sunux/article/details/52944807

相關文章
相關標籤/搜索