Skip to content

Commit af4d5bb

Browse files
authored
fix: omit commit diff for loadSubject (#120)
before, for large diffs, the application could run out of buffer size
1 parent b8121af commit af4d5bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/git.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export class Commit {
5454
*/
5555
public async loadSubject(): Promise<void> {
5656
if (this.message === undefined) {
57-
const [stdout] = await execFile('git', ['show', '--format=%B', this.sha1])
57+
const [stdout] = await execFile('git', ['show', '--format=%B', '--no-patch', this.sha1])
5858
this.message = stdout.toString()
5959
}
6060
}

0 commit comments

Comments
 (0)