From a5dabed5347aa4f82757a0cf796d66f7924f5729 Mon Sep 17 00:00:00 2001 From: Christoph Witzko Date: Tue, 12 May 2015 08:53:25 +0200 Subject: [PATCH] fix(pre): use raw body instead of subject --- lib/commits.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/commits.js b/lib/commits.js index 326ed82e..767db814 100644 --- a/lib/commits.js +++ b/lib/commits.js @@ -7,7 +7,7 @@ var efh = require('./error').efh module.exports = function (from, cb) { var range = (from ? from + '..' : '') + 'HEAD' exec( - 'git log -E --format=%H==SPLIT==%s==END== ' + range, + 'git log -E --format=%H==SPLIT==%B==END== ' + range, efh(cb)(function (stdout) { cb(null, String(stdout).split('==END==\n')