VS Code Now Stamps GitHub Copilot as Git Commit Co-Author


TL;DR

  • Default Flip: VS Code 1.118 stamps a Copilot co-author trailer on Git commits after PR #310226 changed git.addAICoAuthor from “off” to “all”.
  • Misfire Reports: Developers report the trailer attaching to commits made without Copilot, including on installs where chat.disableAIFeatures is set to true.
  • Workaround: Users can restore prior behaviour by setting git.addAICoAuthor to “off” in their VS Code user or workspace configuration.

Visual Studio Code is now stamping a “Co-Authored-by: Copilot” trailer onto Git commits by default after a one-line change in microsoft/vscode pull request #310226 flipped the git.addAICoAuthor setting from “off” to “all” in the 1.118 release. Microsoft engineer cwebster-99 opened the change as ready-for-review on April 15, 2026, and dmitrivMS merged it into main the next day with 25 of 26 checks passing.

The opening comment quickly drew 372 thumbs-down reactions and 30 confused against just two thumbs-up. GitHub user rgs2151 distilled the response into eight words: “Why in the world would you default this!” Commenters in the same thread say the trailer is appearing on commits made without invoking Copilot, including on machines where chat features are explicitly turned off.

What Pull Request #310226 Changes In Practice

PR #310226’s footprint is small. It modifies a single file, extensions/git/package.json, to switch the git.addAICoAuthor default from “off” to “all”. With that default in place, VS Code’s Git extension automatically appends a “Co-authored-by: Copilot” trailer to commit messages whenever it detects AI-generated changes, with no opt-in step required.

Microsoft’s VS Code 1.118 release notes describe the same behaviour as a feature, pointing developers to the git.addAICoAuthor setting for control over the new default. Release notes carefully limit the trailer to commits made when Copilot makes changes to a user’s files, language that positions the trailer as accurate attribution rather than blanket marketing.

Why Developers Say The Trailer Misfires

Complaints have spilled well outside the PR. Pull request #310226 reached the Hacker News front page on May 2 with now 654 comments, following a heated GitHub Community Discussion.

Substantive objections do not come from Copilot users who dislike the trailer in general but noted disabling chat.disableAIFeatures set to true did not stop the trailer.