How to remove copilot #172347
Replies: 14 comments 12 replies
-
|
No idea |
Beta Was this translation helpful? Give feedback.
-
|
If you want to completely remove GitHub Copilot from Codespaces, you’ll need to disable or uninstall the extension inside the editor environment (Codespaces uses VS Code under the hood).
After uninstalling, the Copilot icon in the bottom bar should disappear. |
Beta Was this translation helpful? Give feedback.
-
|
Got it thanks |
Beta Was this translation helpful? Give feedback.
-
|
Hi,
Got it — if disabling/uninstalling from the Extensions tab didn’t remove Copilot completely, you can try this approach:
1.
In your Codespace, open the Command Palette (Ctrl+Shift+P / Cmd+Shift+P).
2.
Search for “Extensions: Show Installed Extensions”.
3.
Locate GitHub Copilot.
4.
Select Uninstall (not just disable).
5.
If the bottom bar icon still remains, reload the window (Ctrl+Shift+P → Reload Window).
If you’re setting this up for a classroom environment, you can also remove Copilot from the .devcontainer/devcontainer.json so that new Codespaces don’t include it at all.
Let me know if that works 👍
Best,
Kiran
…________________________________
________________________________
From: rslotpole-babson ***@***.***>
Sent: Thursday, September 4, 2025 4:41 PM
To: community/community ***@***.***>
Cc: Kiran Gangad ***@***.***>; Comment ***@***.***>
Subject: Re: [community/community] How to remove copilot (Discussion #172347)
Haha. That's what copilot and chatgpt said. Doesn't work
—
Reply to this email directly, view it on GitHub<#172347 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/BH5XH3E7NP7EEGPQIJTVNHL3RBTVDAVCNFSM6AAAAACFUPIZCWVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTIMZQHE3TQMY>.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
Thanks for clarifying — if Copilot isn’t listed under Extensions, that means it’s part of the built-in Codespaces environment rather than a user-installed extension. In that case, the bottom bar icon may still appear even if you can’t disable it through the Extensions tab.
1.
Hide the Status Bar Item
*
Open Settings (JSON) via Command Palette → Preferences: Open User Settings (JSON)
*
Add this snippet:
"workbench.statusBar.visible": true,
"github.copilot.inlineSuggest.enable": false,
"github.copilot.editor.enableAutoCompletions": false
*
This doesn’t fully remove the extension, but hides its activity.
2.
Disable in Codespace Config
*
If you’re preparing this for classroom use, edit .devcontainer/devcontainer.json and explicitly exclude GitHub Copilot.
*
Rebuild the Codespace → this should remove the Copilot integration for that environment.
3.
As a Last Resort
*
If you need Copilot completely disabled for assignments, you may want to raise a ticket with GitHub Education Support so they can confirm whether a full removal option is possible in Codespaces.
…________________________________
From: rslotpole-babson ***@***.***>
Sent: Thursday, September 4, 2025 4:49 PM
To: community/community ***@***.***>
Cc: Kiran Gangad ***@***.***>; Comment ***@***.***>
Subject: Re: [community/community] How to remove copilot (Discussion #172347)
github copilot is not listed as an installed extension. so this doesn't work. Icon still there
—
Reply to this email directly, view it on GitHub<#172347 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/BH5XH3GN7BTE4EBOSVGZPIL3RBUTJAVCNFSM6AAAAACFUPIZCWVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTIMZQHE4DKMY>.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
Hi,
That makes sense — in Codespaces, Copilot is pre-installed as part of the environment, so it won’t show up as a regular extension you can uninstall. Unfortunately, there isn’t currently a way to completely remove the Copilot icon from the bottom bar.
What you can do instead:
*
Disable Copilot features in Settings JSON (so it doesn’t provide suggestions):
"github.copilot.enable": false,
"github.copilot.inlineSuggest.enable": false,
"github.copilot.editor.enableAutoCompletions": false
*
Hide the icon by customizing your VS Code UI:
*
Command Palette → “Preferences: Open User Settings (JSON)”
*
Add UI config such as hiding status bar items (though the slot may still remain).
*
For classrooms: You can rebuild the Codespace with a .devcontainer/devcontainer.json that doesn’t include Copilot.
At the moment, the bottom bar icon itself is part of the Codespaces integration and can’t be fully removed. If this is blocking your classroom use case, I’d recommend opening a ticket with GitHub Education Support<https://support.github.com/contact/education> so they can confirm if/when a complete opt-out will be available.
Best,
Kiran
…________________________________
________________________________
From: Aradhna Sharma ***@***.***>
Sent: Thursday, September 4, 2025 4:55 PM
To: community/community ***@***.***>
Subject: Re: [community/community] How to remove copilot (Discussion #172347)
Thanks for clarifying — if Copilot isn’t listed under Extensions, that means it’s part of the built-in Codespaces environment rather than a user-installed extension. In that case, the bottom bar icon may still appear even if you can’t disable it through the Extensions tab.
1.
Hide the Status Bar Item
*
Open Settings (JSON) via Command Palette → Preferences: Open User Settings (JSON)
*
Add this snippet:
"workbench.statusBar.visible": true,
"github.copilot.inlineSuggest.enable": false,
"github.copilot.editor.enableAutoCompletions": false
*
This doesn’t fully remove the extension, but hides its activity.
2.
Disable in Codespace Config
*
If you’re preparing this for classroom use, edit .devcontainer/devcontainer.json and explicitly exclude GitHub Copilot.
*
Rebuild the Codespace → this should remove the Copilot integration for that environment.
3.
As a Last Resort
*
If you need Copilot completely disabled for assignments, you may want to raise a ticket with GitHub Education Support so they can confirm whether a full removal option is possible in Codespaces.
________________________________
From: rslotpole-babson ***@***.***>
Sent: Thursday, September 4, 2025 4:49 PM
To: community/community ***@***.***>
Cc: Kiran Gangad ***@***.***>; Comment ***@***.***>
Subject: Re: [community/community] How to remove copilot (Discussion #172347)
github copilot is not listed as an installed extension. so this doesn't work. Icon still there
—
Reply to this email directly, view it on GitHub<#172347 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/BH5XH3GN7BTE4EBOSVGZPIL3RBUTJAVCNFSM6AAAAACFUPIZCWVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTIMZQHE4DKMY>.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
Disabling the Copilot extension alone doesn’t fully remove the bottom bar icon in GitHub Codespaces. Here’s what worked for me:
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
To remove GitHub Copilot from Codespaces, first disable it via the Command Palette (Copilot: Disable) and then go to the Extensions panel to disable it for the workspace. The bottom bar icon may still show, as there's no direct way to hide it alone and hiding the full status bar is the only workaround. For classroom use, it’s better to remove "GitHub.copilot" from the extensions list in your .devcontainer/devcontainer.json file. This prevents Copilot from being installed at all when the Codespace starts. |
Beta Was this translation helpful? Give feedback.
-
|
did you try in your account level ? but I'm not so sure, since my Copilot is being enforced by one Org I belong, but without the Org, I don't know if some of those can be disabled
|
Beta Was this translation helpful? Give feedback.
-
|
Yes — you’ll need to uninstall the GitHub Copilot extension inside your Codespace.
This removes both Copilot functionality and the bottom bar icon. |
Beta Was this translation helpful? Give feedback.
-
|
To completely remove GitHub Copilot from Codespaces:
{
"github.copilot.enable": false,
"github.copilot.inlineSuggest.enable": false,
"chat.commandCenter.enabled": false
}That will fully disable Copilot and hide its status bar icon. |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
|
Use VSCodium. Even if you disable the Copilot Chat, you can't uninstall Copilot entirely. And they're collecting your data anyway. VSCodium is a clone of VSCode without telemetry/tracking and without Copilot. |
Beta Was this translation helpful? Give feedback.


Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Copilot Feature Area
General
Body
Does anyone know how to completely remove copilot from codingspaces. Use case is for a classroom assignment. Unable to remove bottom bar icon for copilot
Beta Was this translation helpful? Give feedback.
All reactions