* Asynchronously gets the git log raw output (formerly `git whatchanged`, * which modern git refuses to run without `--i-still-use-this`).
(repoPath, done)
| 7 | * which modern git refuses to run without `--i-still-use-this`). |
| 8 | */ |
| 9 | function whatChanged (repoPath, done) { |
| 10 | exec('git log --raw --no-merges', { |
| 11 | maxBuffer: Infinity, |
| 12 | cwd: repoPath |
| 13 | }, function (error, stdout, stderr) { |
| 14 | if (error) { |
| 15 | throw error; |
| 16 | } |
| 17 | done(stdout); |
| 18 | }); |
| 19 | } |