标签: git
是否可以为与特定存储库相关的所有提交消息定义全局前缀?
答案 0 :(得分:9)
您可以使用here
commit.template
$ git config commit.template /path/to/git-commit-template.txt
这将仅为当前存储库设置模板。您可以添加--global标志以应用于所有存储库。
--global