We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d75a407 commit 7049f52Copy full SHA for 7049f52
2 files changed
extensions/git/package.json
@@ -3740,7 +3740,7 @@
3740
"%config.addAICoAuthor.all%"
3741
],
3742
"scope": "resource",
3743
- "default": "off",
+ "default": "all",
3744
"description": "%config.addAICoAuthor%"
3745
},
3746
"git.ignoreSubmodules": {
extensions/git/src/repository.ts
@@ -1498,7 +1498,7 @@ export class Repository implements Disposable {
1498
}
1499
1500
const config = workspace.getConfiguration('git', Uri.file(this.root));
1501
- const addAICoAuthor = config.get<'off' | 'chatAndAgent' | 'all'>('addAICoAuthor', 'off');
+ const addAICoAuthor = config.get<'off' | 'chatAndAgent' | 'all'>('addAICoAuthor', 'all');
1502
1503
if (addAICoAuthor === 'off') {
1504
return message;
0 commit comments