Git:warning: templates not found in
时间: 2024-03-16 16:45:09 浏览: 144
This warning message is usually displayed when you run a Git command that requires a template file, but Git cannot find the template file in the expected location.
To fix this issue, you can try specifying the path to the template file using the --template option when running the Git command. For example:
```
git init --template=/path/to/template
```
Alternatively, you can try reinstalling Git to ensure that all necessary files and directories are properly installed.
阅读全文