代码之家  ›  专栏  ›  技术社区  ›  T.Todua Laurent W.

在GIT commit字段中设置默认消息

  •  0
  • T.Todua Laurent W.  · 技术社区  · 6 年前

    我已经开始工作了 C:\Users\myUser\.gitconfig

    [commit]
        template = ~/message.txt     //btw: i've also tried: ~user/message.txt 
    

    并在中保存了一些文本 message.txt 在同一个文件夹里。

    enter image description here

    我会错过任何一步吗?

    1 回复  |  直到 6 年前
        1
  •  1
  •   Markus Mauksch    6 年前

    您应该尝试在配置中指定完整路径。例如,这是我在linux上的配置,它可以工作:

    [commit]
    template = /home/mmauksch/.gitmessage
    

    在你的情况下,应该是:

    [commit]
    template = C:/Users/myUser/.gitmessage
    

    ~ 因为“当前用户的主目录”在windows上下文中没有真正意义。