0
手動設置template-Path之後,我收到了警告templates not found /OurServer/SomeDirectory/GitTemplate
。當我查看repo時,模板中的鉤子不存在。但是,當我創建一個新的回購所有鉤子被複制。在克隆但未創建時未找到Git模板
路徑是Networkpath: 在Windows中:\\ OurServer \ SomeDirectory \ GitTemplate 項在全系統gitconfig:
[init]
templatedir = "//OurServer/SomeDirectory/GitTemplate"
有趣的是路徑在配置設置之間的區別://OurServer
並在錯誤/OurServer
。
如果我將其更改爲
[init]
templatedir = "///OurServer/SomeDirectory/GitTemplate"
克隆作品,但隨後創建顯示錯誤templates not found ///OurServer/SomeDirectory/GitTemplate
我使用git 2.13在Windows 7上使用MinGW。
有人有建議嗎?