Skip to content

Commit

Permalink
Add ignore-space-change option to git autocommit
Browse files Browse the repository at this point in the history
  • Loading branch information
ggodlewski committed Nov 7, 2023
1 parent e0d0b69 commit 03a1405
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git/GitScanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ export class GitScanner {
}

const childProcess = spawn('git',
['diff', '--minimal'],
['diff', '--minimal', '--ignore-space-change'],
{ cwd: this.rootPath, env: {} });
const promise = new Promise((resolve, reject) => {
childProcess.on('close', resolve);
Expand Down

0 comments on commit 03a1405

Please sign in to comment.