Git在提交时将以#开头的行视为注释行。在使用票务跟踪系统时,试图将票号写在行首是非常令人讨厌的。
#123 salt hashed passwords
Git会简单地从提交消息中删除这一行。是否有一种方法来逃避散列?我试过了,但是都没用。#之前的空格被保留,所以这也不是解决问题的有效方案。
Git在提交时将以#开头的行视为注释行。在使用票务跟踪系统时,试图将票号写在行首是非常令人讨厌的。
#123 salt hashed passwords
Git会简单地从提交消息中删除这一行。是否有一种方法来逃避散列?我试过了,但是都没用。#之前的空格被保留,所以这也不是解决问题的有效方案。
当前回答
这个行为是git提交默认的“清理”行为的一部分。如果你想保持以#开头的行,你可以使用另一种清理模式。
E.g.
git commit --cleanup=whitespace
如果你这样做,你必须小心删除所有你不想在提交中出现的#行。
其他回答
Git commit -cleanup=剪刀应该被使用。它在2014.05.21被添加到Git v2.0.0中
从git提交——帮助
--cleanup=<mode>
scissors
Same as whitespace, except that everything from (and including) the line
"# ------------------------ >8 ------------------------" is truncated if the message
is to be edited. "#" can be customized with core.commentChar.
您可以使用命令行选项-m:
git commit -m "#123 fixed"
! 是对历史的扩展所以才没用。
历史扩展是通过历史扩展字符的出现来介绍的,这就是!默认情况下。
你可以使用$和单引号(转义Bash单引号字符串中的单引号):
$ git commit -m $'#228 update to a new version! margin of error is 33% | 33^*0.22;'
# commit message: #228 update to a new version! margin of error is 33% | 33^*0.22;
$ git commit -m $'docs!: new API reference for GPS horse navigation'
# commit message: docs!: new API reference for GPS horse navigation
如果没有$和' but '加上":
$ git commit -m "docs!: new API reference for GPS horse navigation"
bash: : unrecognized history modifier
如果与"和escape \一起使用(\仍然会在那里,或者我做错了什么):
$ git commit -m "docs\!: new API reference for GPS horse navigation"
# commit message: docs\!: new API reference for GPS horse navigation
这里的答案很好,也很详细,但是对于像我这样的git新手来说,定制git配置选项并不是那么明显。下面是一个从#改为;注释字符:
git config core.commentChar ";"
这就是你所需要做的。
请注意,从git1.8.2(2013年2月)开始,您可以在提交消息中的注释行中使用不同于'#'的字符。
这允许您使用“#”作为bug编号引用。
Git在要求用户在编辑器中编辑消息时给出的各种“提示”行默认情况下会用“#”注释掉。 commentchar配置变量可以用来自定义这个“#”为不同的字符。
理论上,你可以放一个core.commentChar字(多个字符),但是git 2.0.x/2.1将更加严格(2014年第三季度)。
参见commit 50b54fd by nguyfrecn Thái ngibmc Duy (pclouds):
config:严格的core.commentChar
我们不支持注释字符串(至少现在还不支持)。多字节字符编码也可能被误解。 带有两个逗号的测试被更新,因为它违反了这一点。它与在eff80a9中引入core.commentChar的补丁一起添加(允许自定义“comment char”- 2013-01-16)。我不清楚为什么这种行为是需要的。
git 2.0.x/2.1(2014年Q3)将添加一个core.commentChar的自动选择: 参见commit 84c9dc2
当core.commentChar为"auto"时,评论字符默认以'#'开头,但如果它已经在准备好的消息中,请在一个小子集中找到另一个字符。这应该会停止意外,因为git会意外地删除一些行。 注意,git还不够聪明,无法在自定义模板中将'#'识别为注释字符,并在最终的注释字符不同时将其转换。 它认为自定义模板中的“#”行是提交消息的一部分。所以不要在自定义模板中使用这个。
"auto"的候选字符列表有:
# ; @ ! $ % ^ & | :
这意味着像git commit -m '#1 fixed issue'这样的命令会自动将commentChar切换为';',因为在提交消息中使用了'#'。
参见Tom Wright的“生成散列-在Git提交消息中使用#s”
The Stackoverflow answer I linked to above also mentions a feature in Git that will choose a comment character automatically, based on the characters you use in commit messages. git config --global core.commentChar auto Sounds great right? Unfortunately, it only changes the comment character based on commits made after you turn it on; it doesn’t use your commit history to inform the choice. To my mind, this is a great feature hobbled by poor execution. It seems like a feature that would be effective only if it were on by default: One group of people will simply avoid using hashes in commits because they are familiar with the consequences. Others (like us) will only realise they need to change the comment character when they need to do a rebase. It doesn’t make sense in this situation to add a new commit just to trigger the desired behaviour. A third group of people will consciously accept early on that they need to change the default comment character and will simply choose an alternative. In other words, having this feature available as a non-default option helps virtually no-one. Since having it on by default would do nothing to harm any users, and would remove a pain point for some users, I can’t work out why this isn’t the case. Git isn’t famed for its usability, but to have a fix available and not to turn it on seems gratuitously user-hostile.