Re: [PATCH] Allow custom comment char

2013-01-16 Thread Ralf Thielow
2013/1/16 Junio C Hamano gits...@pobox.com: diff --git a/git-submodule.sh b/git-submodule.sh index 22ec5b6..1b8d95f 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -975,13 +975,19 @@ cmd_summary() { echo done | if test -n $for_status; then +

[PATCH] Allow custom comment char

2013-01-15 Thread Ralf Thielow
From: Junio C Hamano gits...@pobox.com Some users do want to write a line that begin with a pound sign, #, in their commit log message. Many tracking system recognise a token of #bugid form, for example. The support we offer these use cases is not very friendly to the end users. They have a

Re: [PATCH] Allow custom comment char

2013-01-15 Thread Junio C Hamano
Ralf Thielow ralf.thie...@gmail.com writes: From: Junio C Hamano gits...@pobox.com Some users do want to write a line that begin with a pound sign, #, in their commit log message. Many tracking system recognise a token of #bugid form, for example. The support we offer these use cases is

Re: [PATCH] Allow custom comment char

2013-01-15 Thread Junio C Hamano
Junio C Hamano gits...@pobox.com writes: Ralf Thielow ralf.thie...@gmail.com writes: ... Looks like a good progress overall, except for nits here and there. diff --git a/builtin/notes.c b/builtin/notes.c index 453457a..5e84e35 100644 --- a/builtin/notes.c +++ b/builtin/notes.c @@ -92,10