Skip to content

Commit 7049f52

Browse files
authored
Enabling ai co author by default (#310226)
1 parent d75a407 commit 7049f52

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/git/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3740,7 +3740,7 @@
37403740
"%config.addAICoAuthor.all%"
37413741
],
37423742
"scope": "resource",
3743-
"default": "off",
3743+
"default": "all",
37443744
"description": "%config.addAICoAuthor%"
37453745
},
37463746
"git.ignoreSubmodules": {

extensions/git/src/repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1498,7 +1498,7 @@ export class Repository implements Disposable {
14981498
}
14991499

15001500
const config = workspace.getConfiguration('git', Uri.file(this.root));
1501-
const addAICoAuthor = config.get<'off' | 'chatAndAgent' | 'all'>('addAICoAuthor', 'off');
1501+
const addAICoAuthor = config.get<'off' | 'chatAndAgent' | 'all'>('addAICoAuthor', 'all');
15021502

15031503
if (addAICoAuthor === 'off') {
15041504
return message;

0 commit comments

Comments
 (0)