Skip to content

Commit

Permalink
fix(pre): use raw body instead of subject
Browse files Browse the repository at this point in the history
  • Loading branch information
christophwitzko committed May 12, 2015
1 parent be9bb40 commit a5dabed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/commits.js
Expand Up @@ -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')

Expand Down

0 comments on commit a5dabed

Please sign in to comment.