rubenv / grunt-git

Git commands for grunt.
MIT License
227 stars 83 forks source link

gitmerge: Add support for nolog option (--no-log) #133

Closed papandreou closed 6 years ago

papandreou commented 6 years ago

Use case: Preventing a summary of the commits being merged from being added to the merge commit message, even though the user has this in their ~/.gitconfig:

[merge]
log=true

This broke for me in a release flow where a [ci skip] in the message of one of the commits being merged prevented the resulting merge commit from being CIed :). Adding this switch would make us immune to that particular problem.

rubenv commented 6 years ago

Thanks!

rubenv commented 6 years ago

Released to NPM as v1.0.9.

papandreou commented 6 years ago

Thanks for merging! I noticed just now that I made a stupid copy/paste error in the README change. Fixed here: https://github.com/rubenv/grunt-git/pull/135