Update default to chatAndAgent (#312880)

This commit is contained in:
Courtney Webster
2026-04-27 16:04:54 -05:00
committed by GitHub
parent 015b0b4d78
commit f7cbcbc279
2 changed files with 2 additions and 2 deletions

View File

@@ -3740,7 +3740,7 @@
"%config.addAICoAuthor.all%"
],
"scope": "resource",
"default": "all",
"default": "chatAndAgent",
"description": "%config.addAICoAuthor%"
},
"git.ignoreSubmodules": {

View File

@@ -1498,7 +1498,7 @@ export class Repository implements Disposable {
}
const config = workspace.getConfiguration('git', Uri.file(this.root));
const addAICoAuthor = config.get<'off' | 'chatAndAgent' | 'all'>('addAICoAuthor', 'all');
const addAICoAuthor = config.get<'off' | 'chatAndAgent' | 'all'>('addAICoAuthor', 'chatAndAgent');
if (addAICoAuthor === 'off') {
return message;