We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73f6854 commit a6d15a7Copy full SHA for a6d15a7
src/git.ts
@@ -31,7 +31,7 @@ export const parseCommitSummary = (commit: Commit) => {
31
32
export const commits = (): Commit[] => {
33
return execa
34
- .sync('git', ['log', '--oneline --pretty=hash<%h> ref<%D> message<%s> date<%cd>'])
+ .sync('git', ['log', '--oneline', '--pretty=hash<%h> ref<%D> message<%s> date<%cd>'])
35
.stdout.split('\n')
36
.map(parseLogMessage);
37
};
0 commit comments