VS Code 1.117.0 Automatically Adds Copilot as Co-Author on Commit — Here's What Triggers It

VS Code v1.117.0 is adding Co-authored-by: Copilot <[email protected]> to git commits when Copilot inline suggestions (autocomplete) are used. A HN user discovered this when a PR they authored without actively using Copilot still had the co-author line. Investigations confirmed the trigger: accepting even a single character from Copilot's inline suggestion — like fixing a typo in a changelog — appends the co-author attribution.
How it Happens
- The feature is enabled by default with Copilot autocomplete (inline suggestions).
- If you accept any suggestion (even a single comma), the commit gets
Co-authored-by: Copilot <[email protected]>appended. - Manually writing commit messages or using Copilot's commit message generation does not trigger it — only inline acceptance does.
- The commit line reads: "Committed by USERNAME and Copilot".
Community Reaction
- Misattribution: Users argue that claiming authorship by default for minor autocomplete is deceptive, especially when not explicitly using Copilot for that commit.
- No Disclosure: The feature was not clearly communicated in the UI — only buried in release notes from the day prior.
- Opt-Out Available: The entire Copilot feature set can be disabled via
chat.disableAIFeaturesin settings, though no granular toggle for co-author exists.
What You Can Do
- Disable Copilot autocomplete entirely to prevent unwanted co-author tags.
- Set
chat.disableAIFeatures: trueto kill all Copilot features. - Review commit messages before push — the co-author line will appear in the commit body.
For developers relying on Copilot autocomplete, this means every accepted suggestion automatically watermarks your commit history. Consider whether you want that on your PRs before updating.
📖 Read the full source: HN AI Agents
👀 See Also

Bram Cohen critiques 'vibe coding' and AI-assisted development practices
Bram Cohen argues that 'vibe coding'—where developers avoid looking at code while using AI assistants—leads to poor software quality, using Claude's source code leak as an example of the problems with excessive dogfooding.

TabFM: Google's Zero-Shot Foundation Model for Tabular Data Classification and Regression
TabFM applies in-context learning to tabular data, eliminating hyperparameter tuning and feature engineering for classification and regression. Available on Hugging Face and GitHub.

Domo CDO: Stop AI FOMO, Start with Spreadsheets
Domo chief design officer Chris Willis argues AI is being sold without a spec, creating fear-driven 'tokenmaxxing' theater. His fix: start by automating a spreadsheet process, not chasing moonshots.

The Vibe-Coding Noise Floor: How AI Slop Is Strangling Developer Communities
rmoff rants about the steady influx of low-effort AI-generated content in dev communities, from pointless GitHub repos to ghostwritten blog posts, and why it's driving away organic participation.