summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Beier <dontmind@freeshell.org>2011-03-29 17:29:53 +0200
committerChristian Beier <dontmind@freeshell.org>2011-03-29 17:29:53 +0200
commit8a2183b2d911fe014e94275a723124c9e5a34c0f (patch)
tree709a6e96cd3bdfac5cc01817c79c6a2bfa53e1ff
parenteeafad20bfbc4ff3728f02016d354ec28df01068 (diff)
downloadlibtdevnc-8a2183b2.tar.gz
libtdevnc-8a2183b2.zip
Fix skipping of merge commits in log convert script.
-rwxr-xr-xutils/git2cl.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/git2cl.pl b/utils/git2cl.pl
index 1c2ab3f..6a8a1e7 100755
--- a/utils/git2cl.pl
+++ b/utils/git2cl.pl
@@ -321,9 +321,10 @@ while (my $_l = <$fh>) {
# Luis Mondesi <lemsx1@gmail.com>
my $_s = $_l;
$_s =~ s/^ //g;
- if ($_s =~ m/^Merge branch/)
+ if ($_s =~ m/^Merge branch|^Merge remote branch/)
{
$state=0;
+ $author=0;
next;
}
$comment = $comment . $_s;