GitHub Copilot X

24 min read
Updated
Suggest editHistoryTalk
RawGraph

Last edited

Fact-checked

In review queue

Sources

38 citations

Revision

v6 · 4,767 words

Fact-checks are independent of edits: a reviewer re-verifies the article against its sources and stamps the date. How we verify

GitHub Copilot X was the umbrella name GitHub used in 2023 for its vision of an artificial intelligence assistant that would reach across the entire developer workflow rather than only completing code inline. GitHub CEO Thomas Dohmke announced it on March 22, 2023 as a bundle of technical previews layered on GPT-4, the OpenAI model unveiled eight days earlier on March 14, 2023, and called it "our vision for the future of AI-powered software development" [1][34]. The previews spanned a chat interface for the IDE, AI-generated pull request descriptions, a documentation assistant, a command-line helper, and an experimental voice interface called Hey, GitHub [1].

Copilot X was never sold as a separate product. GitHub presented it as a roadmap, and over the following two years each piece either shipped as part of the main GitHub Copilot product, was retired, or was absorbed into a successor feature [1]. By the end of 2024 the marketing label Copilot X had largely fallen out of use, replaced by terms like Copilot Chat, Copilot Workspace, Copilot Extensions, and the broader idea of an AI-native, increasingly agentic developer experience [27]. At the launch Dohmke argued that "with AI available at every step, we can fundamentally redefine developer productivity," noting that Copilot was "already writing 46% of code" and helping developers "code up to 55% faster," and he set a target of pushing the share of AI-written code from 46% toward 80% and beyond [1].

What led to GitHub Copilot X?

Github copilot x1.jpg

GitHub launched the original GitHub Copilot as a technical preview in June 2021, which drew more than 1.2 million enrolled users, and made it generally available on June 21, 2022 at $10 per month or $100 per year, with free access for verified students and maintainers of popular open-source projects [28]. The first version of the product was a code completion engine inside Visual Studio Code, powered by OpenAI Codex, itself a descendant of GPT-3. By early 2023 GitHub said roughly 46% of code in files where Copilot was active was being written by the model, and developers using Copilot reported completing tasks up to 55% faster [1].

Two events in late 2022 and early 2023 set the stage for Copilot X. First, OpenAI released ChatGPT in November 2022, which made conversational AI a familiar pattern for millions of users. Second, OpenAI announced GPT-4 on March 14, 2023, with substantial gains in reasoning, code generation, and multi-step task handling [34]. GitHub had access to GPT-4 before the public announcement and used the eight days between the GPT-4 unveiling and its own March 22 announcement to position Copilot as an early flagship application of the new model [1].

GitHub had been part of Microsoft since the 2018 acquisition for $7.5 billion, which gave the Copilot team direct access to the Azure OpenAI infrastructure that hosts GPT-4 [27]. Microsoft's separate investment in OpenAI, which reached roughly $13 billion in total commitments including a $10 billion round announced in January 2023, provided the commercial framework for the Copilot products to run on OpenAI models without paying public API rates [37].

How was GitHub Copilot X announced?

Dohmke unveiled Copilot X in a blog post titled "GitHub Copilot X: The AI-powered developer experience" on March 22, 2023 [1]. The framing was that Copilot would no longer just be an autocomplete tool. It would sit across the editor, the pull request, the command line, the documentation, and even voice input. Dohmke described the goal as fundamentally redefining developer productivity and pushed an ambition of getting from 46% of code written by Copilot to 80% or more [1]. In a 2023 interview he predicted that "80% of the code is going to be written by Copilot" sooner rather than later, adding that this would let "the developer have more time to focus on the 20% that they're writing" [36].

The "X" in the name had two readings. It hinted at expansion into multiple new surfaces, and it signalled a step-change in the type of work the assistant could do. GitHub did not promise general availability dates for any of the previewed features. Instead the company opened separate waitlists for each component, with eligibility tied to factors like having an active Copilot subscription, being a repository owner, or being part of an enrolled organization [1].

The rollout strategy treated Copilot X less as a single product launch and more as a coordinated set of beta programs, each running on its own timeline. This let GitHub publicly stake out the territory, hand the work off to OpenAI's GPT-4 for the parts where Codex was not strong enough, and convert the most popular previews into shipping features over the following 18 months [1].

What were the original Copilot X features?

The March 2023 announcement listed five Copilot X experiences. Each was a separate technical preview at launch [1].

Copilot Chat

GitHub Copilot Chat is a conversational assistant that lives inside the IDE. The first preview shipped for Visual Studio Code and Visual Studio, with a sidebar where developers could ask questions about the open file or selected code. Chat could explain a function, suggest a fix for a stack trace, generate unit tests, or answer general programming questions. GitHub described it as building on the work OpenAI and Microsoft had done with ChatGPT and the new Bing chat, but tuned for the editor and aware of the surrounding code as context [1].

Copilot Chat was the most successful piece of the Copilot X bundle. It went into a public beta for individuals in September 2023, then reached general availability on December 29, 2023 for both Visual Studio Code and Visual Studio, included in all paid Copilot plans and free for verified teachers, students, and open-source maintainers [5][6]. JetBrains support followed in March 2024, and over the next year Chat expanded to GitHub.com, GitHub Mobile, the JetBrains IDE family, Xcode, Eclipse, and more.

Copilot for Pull Requests

Copilot for Pull Requests added AI-generated descriptions to pull requests on GitHub.com. Powered by GPT-4, it could analyze the diff and propose a draft description, fill in template tags based on the changes, and suggest sentence-level improvements. GitHub also previewed a feature that warned developers when a pull request lacked test coverage and offered to scaffold tests [1].

The technical preview ran through 2023 and was sunset in December 2023. The capability was rebranded as "pull request summaries" and folded into GitHub Copilot Enterprise when that tier became generally available on February 27, 2024 at $39 per user per month [12][13]. Pull request summaries continue to be the canonical descendant of the Copilot for Pull Requests preview.

Copilot for Docs

Copilot for Docs was a documentation question-answering tool. It indexed selected documentation sources and let users ask natural language questions, returning answers grounded in the underlying docs. The initial preview supported React, Azure documentation, and MDN Web Docs, with stated plans to expand to additional public documentation sets and to private internal documentation later [10].

Copilot for Docs ran on GitHub Next, the company's research arm. The technical preview ended on December 15, 2023 [10]. Some of the underlying ideas, particularly the use of retrieval over a curated knowledge corpus, resurfaced in Copilot Enterprise's knowledge bases feature, in Copilot Chat's repository indexing, and later in Copilot Spaces. The standalone Docs product was never converted into a generally available feature.

Copilot for the command line

Copilot for CLI was a terminal helper that could compose shell commands, explain unfamiliar flags, build long pipelines, and decode error messages. It shipped first as an extension to the GitHub CLI (gh copilot), with gh copilot suggest and gh copilot explain as the two primary verbs. Users could invoke it with shell aliases (ghcs and ghce) for shorter typing [7].

The gh copilot extension reached general availability in March 2024, becoming the first Copilot X component after Chat to graduate from preview [7]. It ran on top of OpenAI models and worked with Bash, Zsh, and PowerShell. A more agentic, fully terminal-native Copilot CLI shipped much later: after a public preview that began in September 2025, GitHub made a new GitHub Copilot CLI generally available on February 25, 2026, this time as a standalone agentic coding tool that could plan and execute multi-step work directly from the terminal rather than only suggest individual commands [8].

Copilot Voice (Hey, GitHub)

Copilot Voice, originally introduced as the "Hey, GitHub!" experiment in November 2022, let developers speak natural language prompts instead of typing them [11]. The Copilot X version of voice promised tighter integration with the chat interface and access to GPT-4 for richer responses [1].

Voice did not survive. GitHub announced in March 2024 that the Copilot Voice technical preview would end on April 3, 2024 [9]. The team transferred the speech-to-text learnings to the VS Code Speech extension from Microsoft, which was made generally available as a separate Microsoft product [9]. Voice as a Copilot X branded feature was discontinued.

Which Copilot X features shipped, and which were retired?

Original Copilot X featureLaunch (preview)OutcomeSuccessor
Copilot ChatMarch 22, 2023 [1]Generally available December 29, 2023 [5]Copilot Chat (still active across IDEs and GitHub.com)
Copilot for Pull RequestsMarch 22, 2023 [1]Sunset December 2023Pull request summaries in Copilot Enterprise [12]
Copilot for DocsMarch 22, 2023 [1]Sunset December 15, 2023 [10]Knowledge bases in Copilot Enterprise; later Copilot Spaces
Copilot for CLIMarch 22, 2023 [1]gh copilot GA March 2024 [7]; new agentic Copilot CLI GA February 25, 2026 [8]GitHub Copilot CLI
Copilot Voice (Hey, GitHub)March 22, 2023 [1]Sunset April 3, 2024 [9]VS Code Speech extension (Microsoft)

Why was Copilot X built on GPT-4?

At launch, every Copilot X feature ran on GPT-4, which had been announced by OpenAI on March 14, 2023 [34]. GitHub argued that GPT-4 unlocked Copilot X for several reasons. The new model was substantially better at multi-turn reasoning, which mattered for chat. It handled longer context windows, which mattered for pull request analysis and documentation queries. And it produced higher-quality natural language explanations, which mattered for the voice and docs experiences [1].

The original inline code completion feature in GitHub Copilot continued to use Codex through 2023, since Codex was faster and cheaper for the tight latency budget of typing-time suggestions. Copilot Chat used GPT-3.5 in its earliest preview and was upgraded to GPT-4 in a November 30, 2023 update [32]. Over time, Copilot completion infrastructure also moved off Codex, to a series of in-house and OpenAI-hosted models tuned for speed.

GitHub's reliance on a single model provider began to shift in late 2024, when the company introduced multi-model support [18]. By that point, the original GPT-4 backbone of Copilot X had been replaced or supplemented across the product line.

How did GitHub Copilot evolve after Copilot X?

Copilot X was the bridge between the 2021-2022 era of inline completions and the 2024-2026 era of agentic AI development [25]. The features GitHub shipped after the original announcement followed directly from the Copilot X playbook of expanding the assistant to new surfaces.

Copilot Chat general availability (December 2023)

Copilot Chat reached general availability on December 29, 2023, included in all paid Copilot plans and free for verified students, teachers, and maintainers of popular open-source projects [5]. By that date Chat was running on GPT-4 by default in both Visual Studio Code and Visual Studio [32].

Copilot Enterprise (February 2024)

GitHub had previewed a separate enterprise tier on November 8, 2023 at GitHub Universe, alongside the general availability of Copilot Chat and a new Copilot Partner Program [35]. Copilot Enterprise reached general availability on February 27, 2024 at $39 per user per month [12][13]. The tier added knowledge bases (curated repository collections that Chat could ground its answers in), pull request summaries, Bing search integration, and Copilot Chat on GitHub.com. Several of these features were direct evolutions of the original Copilot for Docs and Copilot for Pull Requests previews.

Copilot Autofix (March 2024)

Copilot Autofix, announced in March 2024, brought Copilot into the security workflow. It combined GitHub's CodeQL static analysis engine with GPT-4o to suggest fixes for code scanning alerts directly inside pull requests. GitHub's beta data, drawn from customer use between May and July 2024, showed a median time-to-fix of about 28 minutes with Autofix versus 1.5 hours for a manual remediation, roughly 3 times faster overall [16]. SQL injection fixes specifically dropped from 3.7 hours to 18 minutes on average, about 12 times faster, and cross-site scripting fixes fell from almost three hours to 22 minutes, about 7 times faster [16]. Autofix went generally available later in 2024 for Advanced Security customers and was added to free tools for open-source maintainers in September 2024.

Copilot Workspace (April 2024)

GitHub Copilot Workspace was announced on April 29, 2024 by Thomas Dohmke as a Copilot-native, browser-based development environment [14]. Given a GitHub issue written in natural language, Workspace would propose a specification, generate a step-by-step implementation plan, and produce code changes across multiple files, all without leaving the browser. Dohmke described it as "a radically new way of building software with natural language" and framed it as a continuation of the Copilot X vision [14].

Under the hood Workspace coordinated several specialized agents: a brainstorm agent for clarifying requirements, a plan agent for sequencing the work, and an implementation agent for producing the code. It used GPT-4 by default. The technical preview expanded to more users in December 2024 [26], then was sunset on May 30, 2025. The lessons from Workspace, particularly the issue-to-pull-request workflow and the multi-agent decomposition, were folded into the Copilot coding agent and into Copilot agent mode in VS Code.

Copilot Extensions (May 2024)

At Microsoft Build on May 21, 2024, GitHub launched Copilot Extensions in private preview [15]. Extensions let third-party developers plug their tools and services directly into Copilot Chat, so that a developer could ask DataStax, Docker, Sentry, Stripe, MongoDB, or any registered partner a question without leaving the editor. Initial launch partners included DataStax, Docker, LambdaTest, LaunchDarkly, McKinsey & Company, Microsoft Azure and Teams, MongoDB, Octopus Deploy, Pangea, Pinecone, Product Science, ReadMe, Sentry, and Stripe [15]. Extensions reached public beta on September 9, 2024, and the broader extensibility model was later restructured around the Model Context Protocol (MCP).

Multi-model support (October 2024)

At GitHub Universe 2024 on October 29, 2024, GitHub broke its single-model story for the first time [17]. Copilot Chat in Visual Studio Code and on GitHub.com gained support for Anthropic's Claude 3.5 Sonnet, Google's Gemini 1.5 Pro, and OpenAI's GPT-4o, o1-preview, and o1-mini on top of the existing GPT-4 default [18][19]. Claude 3.5 Sonnet went live the same day; Gemini 1.5 Pro followed in the weeks after. Developers could swap models mid-conversation in Chat. Anthropic's Claude was hosted on Amazon Bedrock and Google's Gemini was hosted on Vertex AI, with GitHub managing the routing [18].

Copilot Edits (November 2024)

Copilot Edits launched as a preview in VS Code on November 12, 2024 [21]. It combined the conversational flow of Chat with the multi-file editing model that Copilot Workspace had pioneered. Developers picked a working set of files, asked for a change in natural language, and reviewed the AI's edits inline before accepting them. Copilot Edits became generally available in VS Code in February 2025 and shipped to Visual Studio 2022 (version 17.13) on February 11, 2025 [21].

GitHub Spark (October 2024)

Also at GitHub Universe 2024, the company unveiled GitHub Spark, an experimental AI-native tool for building "sparks," or full-stack mini web apps, entirely in natural language [17][20]. Spark was an outgrowth of the GitHub Next research arm. It used multiple model providers (including Anthropic Claude) and let users iterate by editing prompts, accepting AI-generated code changes, and previewing the app in real time. The backend was built on a GitHub repository, GitHub Actions, and Microsoft Azure CosmosDB [20].

Spark was not branded as part of Copilot X, but it followed the same playbook: take a Copilot capability, push it to a new audience (in this case, non-developers and rapid prototypers), and ship it as a separate experience.

Free tier (December 2024)

On December 18, 2024, GitHub launched a free tier of GitHub Copilot, available to any developer with a GitHub account and accessible directly inside Visual Studio Code, alongside the milestone that GitHub had passed 150 million developers [22][33]. The free plan included 2,000 code completions and 50 Chat messages per month, with model access to Claude 3.5 Sonnet and GPT-4o [22]. The free tier dropped the requirement for a credit card and was widely seen as a competitive response to free offerings from Codeium and Cursor.

Agent mode (February 2025)

GitHub previewed Copilot agent mode in early February 2025 and made it available in VS Code Stable on February 24, 2025 [23]. Agent mode let Copilot operate autonomously inside the editor: it could read files across the workspace, edit multiple files in one task, run terminal commands, run tests, observe the output, and loop until the task succeeded or it hit a stopping condition. Agent mode supported the Model Context Protocol for connecting to external tools and data sources [23]. By the end of 2025 it was available across VS Code, JetBrains IDEs, Eclipse, and Xcode.

Coding agent (May 2025)

The Copilot coding agent, announced in May 2025 and generally available on September 25, 2025, was the asynchronous, cloud-hosted counterpart to the editor agent [24][30]. Developers assigned a GitHub issue to Copilot (by tagging @copilot or using the agent UI), and Copilot would spin up an isolated cloud sandbox using GitHub Actions, write the code, push commits to a draft pull request, run tests, and self-review before requesting human review [30].

Copilot Spaces (May to September 2025)

Copilot Spaces, introduced in May 2025 and generally available in September 2025, were persistent context containers that pulled together repositories, issues, custom instructions, and documentation files. Spaces filled the role that Copilot for Docs and Copilot Enterprise knowledge bases had been groping toward in 2023 and 2024.

What has the Copilot X vision become by 2026?

SurfaceCapability todayRoots in Copilot X
Editor inline completionsReal-time Tab completions across many IDEs, custom in-house modelExisted pre-Copilot X
Editor chatConversational assistance, multi-modelCopilot Chat preview
Editor agent modeAutonomous multi-file edits, tool use, MCPBuilt on Chat plus lessons from Workspace
Editor multi-file editsWorking set, iterative reviewCopilot Edits, descendant of Workspace
Pull requestsAI-generated descriptions and summaries; Copilot reviewsCopilot for Pull Requests
GitHub.comChat with repository context, knowledge basesCopilot for Docs (concept), Copilot Enterprise
Command lineSuggest, explain, agentic CLICopilot for CLI
Cloud agentIssue-to-PR via @copilotCopilot Workspace lineage
Mini app builderGitHub SparkAdjacent, GitHub Next research
VoiceDiscontinued; speech via VS Code Speech extensionCopilot Voice (Hey, GitHub)

How much does GitHub Copilot cost?

GitHub Copilot X itself was not sold at a separate price point. The previewed features were free for waitlisted users, with the expectation that they would be folded into the Copilot subscription tiers as they reached general availability [1]. As of early 2026 the descendant features sit across the following plan structure.

PlanMonthly priceCode completionsChat messagesIncludes (relevant to Copilot X lineage)
Free$02,000 per month50 per monthChat (limited), agent mode in VS Code, GPT-4o and Claude 3.5 Sonnet
Pro$10 per userUnlimitedUnlimitedChat, agent mode, multi-model, Copilot CLI
Pro+$39 per userUnlimitedUnlimitedAll Pro features plus expanded premium requests, GitHub Spark
Business$19 per userUnlimitedUnlimitedChat, agent mode, IP indemnity, organization controls
Enterprise$39 per userUnlimitedUnlimitedKnowledge bases, pull request summaries, Bing search, advanced models

The Copilot X features that survived (Chat, the descendant of Pull Requests in summaries, the descendant of Docs in knowledge bases, and the CLI) are all included in at least one of these tiers. Voice and the standalone Docs product are not.

Who competes with GitHub Copilot?

The AI coding assistant market that Copilot X helped define grew quickly. By 2026 the field included:

ToolDeveloperApproachPricing (individual)
GitHub CopilotGitHub / MicrosoftMulti-surface, multi-model, deep GitHub integrationFree to $39 per month
CursorAnysphereAI-native fork of VS Code, strong agent capabilities$20 per month
Claude CodeAnthropicTerminal-native autonomous coding agentUsage-based
CodeiumExafunctionFree tier with unlimited completionsFree baseline
WindsurfCodeiumAI-native IDE with Cascade agent flow$15 per month
TabnineTabninePrivacy-first, on-premise optionFree to $12 per month
Replit AgentReplitBrowser-based, app generation focusSubscription tiers
JetBrains AI AssistantJetBrainsNative to JetBrains IDEs$10 per month
Amazon Q DeveloperAmazonDeep AWS integration, code transformationFree to $19 per month
Gemini Code AssistGoogleGoogle Cloud integration, Gemini modelsFree to $19 per user per month

GitHub Copilot remained the clear leader in the market it helped create. By mid-2025 it had crossed 20 million all-time users, adding roughly 5 million between April and July 2025, and was deployed across 90% of the Fortune 100 [29]. It was supported by its first-mover advantage and tight integration with the GitHub ecosystem, which passed more than 150 million developers by the end of 2024 [33]. Various 2025 industry estimates put Copilot's share of the paid AI coding assistant market at roughly 40% [38]. Cursor was the most visible direct competitor, gaining traction in 2024 and 2025 for its AI-native editor approach. Anthropic's Claude Code carved out a niche as a terminal-based autonomous coding agent.

How was GitHub Copilot X received?

The initial press coverage of Copilot X in March 2023 was largely positive. TechCrunch described it as moving "beyond code completion" and giving developers a chat mode and other tools [2]. SiliconANGLE called it a major step in AI-powered development [3]. VentureBeat and Petri framed Copilot X as the first concrete look at how GPT-4 might land inside developer tools [4].

Developers responded mostly to Copilot Chat, which became the most requested feature in the bundle. The waitlists for Pull Requests, Docs, and CLI were also heavily subscribed, although usage of Pull Requests and Docs in their original form turned out to be limited compared to the volume of inline completions in the main Copilot product. Copilot Voice (Hey, GitHub) drew interest more for novelty than for daily use, which contributed to its eventual sunset [9].

Criticism of Copilot X focused on a few recurring themes. Some developers questioned whether GPT-4 inference costs would scale with general availability. Security researchers continued to point out that Copilot's underlying model, like Codex before it, sometimes produced code with vulnerabilities or echoed patterns from training data, problems that did not go away just because the surface had changed from completions to chat. The class-action copyright lawsuit filed against GitHub, Microsoft, and OpenAI in November 2022 over Copilot's training data was still unresolved at the time of the Copilot X announcement. In June and July 2024, Judge Jon Tigar of the US District Court for the Northern District of California dismissed most of the claims, including the DMCA Section 1202(b) allegation (with prejudice), leaving two claims to proceed: an open-source license violation and a breach-of-contract complaint [31]. The case remained a backdrop for the entire Copilot product line through 2025.

From a product perspective, the Copilot X bundle is now widely seen as the moment GitHub committed to becoming an AI-first developer platform, rather than a code hosting service that happened to ship an AI feature. By mid-2025 Microsoft CEO Satya Nadella had said GitHub Copilot grew into a larger business than all of GitHub had been at the time of the 2018 acquisition, and Copilot had crossed 20 million all-time users [29].

See also

References

  1. Dohmke, Thomas. "GitHub Copilot X: The AI-powered developer experience." The GitHub Blog, March 22, 2023. https://github.blog/news-insights/product-news/github-copilot-x-the-ai-powered-developer-experience/
  2. TechCrunch. "GitHub's Copilot goes beyond code completion, adds a chat mode and more." March 22, 2023. https://techcrunch.com/2023/03/22/githubs-copilot-goes-beyond-code-completion-adds-a-chat-mode-and-more/
  3. SiliconANGLE. "GitHub debuts AI-powered Copilot X coding assistant." March 22, 2023. https://siliconangle.com/2023/03/22/github-debuts-ai-powered-copilot-x-coding-assistant/
  4. VentureBeat. "GitHub unveils Copilot X: The future of AI-powered software development." March 22, 2023. https://venturebeat.com/ai/github-unveils-copilot-x-the-future-of-ai-powered-software-development/
  5. The GitHub Blog. "GitHub Copilot Chat now generally available for organizations and individuals." December 29, 2023. https://github.blog/news-insights/product-news/github-copilot-chat-now-generally-available-for-organizations-and-individuals/
  6. TechCrunch. "GitHub makes Copilot Chat generally available, letting devs ask questions about code." December 29, 2023. https://techcrunch.com/2023/12/29/github-makes-copilot-chat-generally-available-letting-devs-ask-questions-about-code/
  7. GitHub Changelog. "GitHub Copilot General Availability in the CLI." March 21, 2024. https://github.blog/changelog/2024-03-21-github-copilot-general-availability-in-the-cli/
  8. GitHub Changelog. "GitHub Copilot CLI is now generally available." February 25, 2026. https://github.blog/changelog/2026-02-25-github-copilot-cli-is-now-generally-available/
  9. Visual Studio Magazine. "GitHub Kills 'Copilot Voice' Tool." March 4, 2024. https://visualstudiomagazine.com/articles/2024/03/04/copilot-voice.aspx
  10. GitHub Next. "Copilot for Docs." Project page. https://githubnext.com/projects/copilot-for-docs
  11. GitHub Next. "Copilot Voice." Project page. https://githubnext.com/projects/copilot-voice/
  12. The GitHub Blog. "GitHub Copilot Enterprise is now generally available." February 27, 2024. https://github.blog/news-insights/product-news/github-copilot-enterprise-is-now-generally-available/
  13. TechCrunch. "GitHub's Copilot Enterprise is now generally available at $39 a month." February 27, 2024. https://techcrunch.com/2024/02/27/githubs-copilot-enterprise-hits-general-availability/
  14. Dohmke, Thomas. "GitHub Copilot Workspace: Welcome to the Copilot-native developer environment." The GitHub Blog, April 29, 2024. https://github.blog/news-insights/product-news/github-copilot-workspace/
  15. The GitHub Blog. "Introducing GitHub Copilot Extensions." May 21, 2024. https://github.blog/news-insights/product-news/introducing-github-copilot-extensions/
  16. The GitHub Blog. "Found means fixed: Secure code more than three times faster with Copilot Autofix." 2024. https://github.blog/news-insights/product-news/secure-code-more-than-three-times-faster-with-copilot-autofix/
  17. GitHub Newsroom. "Universe 2024: GitHub Embraces Developer Choice with Multi-Model Copilot, New App Tool GitHub Spark, and AI-Native Developer Experience." October 29, 2024. https://github.com/newsroom/press-releases/github-universe-2024
  18. The GitHub Blog. "Bringing developer choice to Copilot with Anthropic's Claude 3.5 Sonnet, Google's Gemini 1.5 Pro, and OpenAI's o1-preview." October 29, 2024. https://github.blog/news-insights/product-news/bringing-developer-choice-to-copilot/
  19. TechCrunch. "GitHub's Copilot goes multi-model and adds support for Anthropic's Claude and Google's Gemini." October 29, 2024. https://techcrunch.com/2024/10/29/githubs-copilot-goes-multi-model-and-adds-support-for-anthropics-claude-and-googles-gemini/
  20. TechCrunch. "GitHub Spark lets you build web apps in plain English." October 29, 2024. https://techcrunch.com/2024/10/29/github-spark-lets-you-build-web-apps-in-plain-english/
  21. Visual Studio Code Blog. "Introducing Copilot Edits (preview)." November 12, 2024. https://code.visualstudio.com/blogs/2024/11/12/introducing-copilot-edits
  22. Visual Studio Code Blog. "Announcing a free GitHub Copilot for VS Code." December 18, 2024. https://code.visualstudio.com/blogs/2024/12/18/free-github-copilot
  23. Visual Studio Code Blog. "Introducing GitHub Copilot agent mode (preview)." February 24, 2025. https://code.visualstudio.com/blogs/2025/02/24/introducing-copilot-agent-mode
  24. The GitHub Blog. "GitHub Copilot: Meet the new coding agent." May 2025. https://github.blog/news-insights/product-news/github-copilot-meet-the-new-coding-agent/
  25. The GitHub Blog. "GitHub Copilot: The agent awakens." 2025. https://github.blog/news-insights/product-news/github-copilot-the-agent-awakens/
  26. GitHub Changelog. "Expanding Access to the GitHub Copilot Workspace Technical Preview." December 30, 2024. https://github.blog/changelog/2024-12-30-expanding-access-to-the-github-copilot-workspace-technical-preview/
  27. Wikipedia. "GitHub Copilot." https://en.wikipedia.org/wiki/GitHub_Copilot
  28. The GitHub Blog. "GitHub Copilot is generally available to all developers." June 21, 2022. https://github.blog/news-insights/product-news/github-copilot-is-generally-available-to-all-developers/
  29. TechCrunch. "GitHub Copilot crosses 20M all-time users." July 30, 2025. https://techcrunch.com/2025/07/30/github-copilot-crosses-20-million-all-time-users/
  30. GitHub Changelog. "Copilot coding agent is now generally available." September 25, 2025. https://github.blog/changelog/2025-09-25-copilot-coding-agent-is-now-generally-available/
  31. The Register. "Judge dismisses DMCA copyright claim in GitHub Copilot suit." July 8, 2024. https://www.theregister.com/2024/07/08/github_copilot_dmca/
  32. GitHub Changelog. "GitHub Copilot - November 30th Update." November 30, 2023. https://github.blog/changelog/2023-11-30-github-copilot-november-30th-update/
  33. The GitHub Blog. "Announcing 150M developers and a new free tier for GitHub Copilot in VS Code." December 18, 2024. https://github.blog/news-insights/product-news/github-copilot-in-vscode-free/
  34. TechCrunch. "OpenAI releases GPT-4, a multimodal AI that it claims is state-of-the-art." March 14, 2023. https://techcrunch.com/2023/03/14/openai-releases-gpt-4-ai-that-it-claims-is-state-of-the-art/
  35. The GitHub Blog. "Universe 2023: Copilot transforms GitHub into the AI-powered developer platform." November 8, 2023. https://github.blog/news-insights/product-news/universe-2023-copilot-transforms-github-into-the-ai-powered-developer-platform/
  36. Freethink. "GitHub CEO says Copilot will write 80% of code 'sooner than later'." 2023. https://www.freethink.com/robots-ai/github-copilot
  37. CNBC. "Microsoft's $13 billion bet on OpenAI carries huge potential along with plenty of uncertainty." April 8, 2023. https://www.cnbc.com/2023/04/08/microsofts-complex-bet-on-openai-brings-potential-and-uncertainty.html
  38. Panto AI. "GitHub Copilot Statistics 2026: Users, Revenue & Adoption." 2025. https://www.getpanto.ai/blog/github-copilot-statistics

Improve this article

Add missing citations, update stale details, or suggest a clearer explanation. Every suggestion is reviewed for sourcing before it goes live.

5 revisions by 1 contributors · full history

Suggest edit