From: Alfredo Deza Date: Tue, 22 Dec 2015 20:30:51 +0000 (-0500) Subject: do not include merge commit messages X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=06ac63a577b0f7df7bd770da85dba757eb11f457;p=ceph-build.git do not include merge commit messages Signed-off-by: Alfredo Deza --- diff --git a/ceph-pr-commits/build/build b/ceph-pr-commits/build/build index a4d9aecd..8d684508 100644 --- a/ceph-pr-commits/build/build +++ b/ceph-pr-commits/build/build @@ -5,7 +5,7 @@ import os target_branch = os.getenv('ghprbTargetBranch', 'master') source_branch = os.getenv('ghprbSourceBranch', 'HEAD') -command = ['git', 'log', '%s..%s' % (target_branch, source_branch)] +command = ['git', 'log', '--no-merges', '%s..%s' % (target_branch, source_branch)] process = Popen(