-544,545d543
-< # git will not commit with a blank comment, though this
-< # can be overridden in later versions.
-547c545,553
-< $params{message}.="No commit message specified.";
----
-> # Force git to allow empty commit messages.
-> # (If this version of git supports it.)
-> my ($version)=`git --version` =~ /git version (.*)/;
-> if ($version ge "1.5.4") {
-> push @opts, '--cleanup=verbatim';
-> }
-> else {
-> $params{message}.=".";
-> }
+ 544,545d543
+ < # git will not commit with a blank comment, though this
+ < # can be overridden in later versions.
+ 547c545,553
+ < $params{message}.="No commit message specified.";
+ ---
+ > # Force git to allow empty commit messages.
+ > # (If this version of git supports it.)
+ > my ($version)=`git --version` =~ /git version (.*)/;
+ > if ($version ge "1.5.4") {
+ > push @opts, '--cleanup=verbatim';
+ > }
+ > else {
+ > $params{message}.=".";
+ > }