Git treats lines starting with # as comment lines when committing. this is very annoying when working with a ticket tracking system, and trying to write the ticket number at the beginning of the line, e.g.

#123 salt hashed passwords

git will simply remove the line from the commit message. is there any way to escape the hash? i tried \ and !, but nothing works. whitespaces before # are preserved, so they aren't a working solution to the problem either.

link|improve this question

76% accept rate
Why not adopt a convention like Bug#123? – Alex May 7 '10 at 11:23
feedback

3 Answers

up vote 20 down vote accepted

This behaviour is part of git commit's default 'clean-up' behaviour. If you want to keep lines starting with # you can use an alternative clean-up mode.

E.g.

git commit --cleanup=whitespace

If you do this you have to be careful to remove all # lines that you don't want to appear in the commit.

link|improve this answer
thanks, this works best so far and comes close to escaping :) – knittl May 7 '10 at 14:52
The next question is: Where can I edit the commit message comments that git introduces which start by default with a # ? – Alex Apr 16 at 14:51
@Alex: It's controlled by the commit.template git configuration variable. – Charles Bailey Apr 16 at 14:57
This works great for amending existing commits also. Eg: git commit --amend --cleanup=whitespace – James Andres May 2 at 14:40
feedback

You can use the command line option -m:

git commit -m "#123 fixed"
link|improve this answer
ok, this is an easy workaround for now. thanks – knittl May 7 '10 at 12:41
But this is a horrible commit message. make sure to include what the bug was and how it was fixed – Good Person Mar 25 at 17:46
feedback

Use a different prefix for the ticket number. Or prepend a word to the ticket number, like "Bug #42". Or prepend a single space character to the line; if you wish to remove that whitespace you can add a commit-hook for that.

I personally would rather not have this sort of commit message manipulation done by a hook because it can be very irritating when it triggers when you don't want it to. The easiest solution is probably to re-think the problem.

link|improve this answer
different wording is only a workaround for the problem. if project guidelines state that a commit message must begin with the ticket id, then it will not work. and a post-commit hook is very ugly. i think i should report this "bug" to the git developers – knittl May 7 '10 at 11:39
Don't bother, that'd be wrong. Don't ask the git developers to work according to your guidelines. You wouldn't ask Dennis Ritchie to change the C language so it supports you variable names convention of starting with a hash character, right? The same applies here. If commit messages allow comments then this adds support for interesting things, like opening the commit editor with the diff added and commented out so you don't need to remember your exact changes. What's wrong with preserving the leading space character? – wilhelmtell May 7 '10 at 11:57
supporting escape characters in git's commit message wouldn't be such a big deal – knittl May 7 '10 at 11:59
1  
It's a perfectly reasonable feature request. Especially in light of the fact that Trac, AFAICT, doesn't associate a commit to a bug slip if the commit message doesn't start with the slip number, starting with a hash. So it's not just someone's standards, it's a tool's required syntax. Let the Git devs decide whether it's worthwhile or not. (And yes, Trac could also fix the problem. There's nothing wrong with requesting that Git do what it can, too.) – Luke Maurer Mar 12 '11 at 0:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.