From 3d13fe4fae81bbf33ac2e5f19a72e099ce55bb76 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sun, 10 Dec 2017 19:45:52 -0700 Subject: [PATCH] Don't print mercurial branch info for merges. --- log2cl.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/log2cl.pl b/log2cl.pl index af3eddc64..9cfd96886 100755 --- a/log2cl.pl +++ b/log2cl.pl @@ -62,6 +62,7 @@ while () { # Commit message body (multi-line) foreach (@lines) { + last if $_ eq "--HG--"; if (defined($body)) { $_ = "\r" if $_ eq ""; $body .= " $_"; -- 2.50.1