WayToClawEarn
Beginner5 min readMay 31, 2026

How to turn off signature in VS Code Copilot AI: remove Co-Authored-by with one line of command

Does GitHub Copilot automatically add AI signature to every commit? Three shutdown methods (settings panel/settings.json/project level), verification steps, and why to shut down.

WayToClawEarn EditorialPublished May 31, 2026Updated Aug 8, 2026

Editorial review of public sources · AI-assisted drafting. How we work

Problem Scenario

Starting in 2026, GitHub Copilot in VS Code will automatically add Co-authored-by: GitHub Copilot to the commit message in every AI-assisted code submission. This creates problems for open source project maintainers and developers who don’t want to expose traces of their AI usage.

Good News: This feature can be turned off and only requires one line of configuration.

Three closing methods

Method 1: VS Code settings panel (recommended, the simplest)

  1. Open VS Code
  2. Cmd/Ctrl + , Open settings
  3. Search for copilot co-authored
  4. Uncheck GitHub › Copilot: Co Authored By Enabled
  5. Restart VS Code

Method 2: Modify settings.json directly

In VS Code Cmd/Ctrl + Shift + P → Search for Preferences: Open User Settings (JSON), add:

json
{
  "github.copilot.coAuthoredBy.enabled": false
}

()

.vscode/settings.json

json
{
  "github.copilot.coAuthoredBy.enabled": false
}

,。

VS Code settings screenshot

, Copilot , git add + git commit。 commit message

terminal
git log -1 --format='%B'

Co-authored-by: GitHub Copilot,。

GitHub

GitHub ""。, AI —— AI 。

Copilot (AI Agent ), commit AI commit 。

AI ,,

terminal

# git commit
git commit -m "feat: add user auth" -m "Co-authored-by: AI Assistant <ai@example.com>"

Or automatically add signatures through git hooks in tools such as Claude Code and Codex.

Tool entry

GitHub Copilot, Claude Code, Codex, VS Code.

Next step

  1. Immediately turn off unnecessary AI signatures
  2. If you are a team manager, discuss a unified signature strategy with your team
  3. Consider using Claude Code + DeepSeek V4 as an alternative (no mandatory signature)

Related reading

Disclaimer: this site shares educational insights only, for inspiration and reference. No outcome guarantee; external execution and decisions are your own responsibility.

Related tutorials