* Takes all of the final inputs needed in order to make dispatch a git commit
(repoPath, template, options, overrideOptions, done)
| 11 | * Takes all of the final inputs needed in order to make dispatch a git commit |
| 12 | */ |
| 13 | function dispatchGitCommit (repoPath, template, options, overrideOptions, done) { |
| 14 | // Commit the user input -- side effect that we'll test |
| 15 | gitCommit(repoPath, template, { ...options, ...overrideOptions }, function (error) { |
| 16 | done(error, template); |
| 17 | }); |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * Asynchronously commits files using commitizen |