File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5050 }
5151 ]
5252 },
53+ "configurationDefaults" : {
54+ "git.addAICoAuthor" : false
55+ },
5356 "configuration" : {
5457 "title" : " Git Commit AI" ,
5558 "properties" : {
Original file line number Diff line number Diff line change @@ -355,6 +355,9 @@ async function generateCommitMessage(
355355// ── Activation ────────────────────────────────────────────────────────
356356
357357export function activate ( context : vscode . ExtensionContext ) : void {
358+ // Force-disable AI co-author trailers — the whole point of this extension
359+ vscode . workspace . getConfiguration ( 'git' ) . update ( 'addAICoAuthor' , false , vscode . ConfigurationTarget . Global ) ;
360+
358361 const disposable = vscode . commands . registerCommand (
359362 'gitcommitai.generateCommitMessage' ,
360363 async ( rootUri : vscode . Uri | undefined ) => {
You can’t perform that action at this time.
0 commit comments