author | Gerrit Pape <pape@smarden.org> | |
Thu, 7 Feb 2008 09:36:10 +0000 (09:36 +0000) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 13 Feb 2008 22:22:54 +0000 (14:22 -0800) | ||
commit | 9386ecbb1cb0576f67da804f57dd96ffd62bb3c6 | |
tree | ac8bc4c103296e905c205bff998671b4be490595 | tree | snapshot |
parent | 846688726c388cf7fc92ac5cc9f3576e93847e15 | commit | diff |
cvsimport: have default merge regex also match beginning of commit message
The default value of @mergerx uses \W, which matches a non-word
character; this means that commit messages like "Merging FOO" are not
matched by default; using \b, which matches a word boundary, instead of
\W fixes that.
This change was suggested by Frédéric Brière through
http://bugs.debian.org/463468
Signed-off-by: Gerrit Pape <pape@smarden.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
The default value of @mergerx uses \W, which matches a non-word
character; this means that commit messages like "Merging FOO" are not
matched by default; using \b, which matches a word boundary, instead of
\W fixes that.
This change was suggested by Frédéric Brière through
http://bugs.debian.org/463468
Signed-off-by: Gerrit Pape <pape@smarden.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-cvsimport.perl | diff | blob | history |