输入 时git commit
,您会在编辑器中看到类似于以下公式化消息的内容:
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch Master
# Your branch is ahead of 'ec/Master' by 2 commits.
# (use "git push" to publish your local commits)
#
# Changes to be committed:
# modified: package.json
# ...
我想在每次打开编辑器时向该消息中添加内容(具体来说,在编写提交消息的第一行时,我经常引用给定项目的 [.gitlabels][gl] 文件)。
有没有办法做到这一点,或者生成该内容的细节是硬编码的?(如果是这样,当它检测到正在编辑 git commit-message 文件时,是否有办法vim
自动插入类似的内容?我同样很高兴接受详细说明如何这样做的答案。)