How to use GitHub's AI coding assistant for free - and why it's worth a try
GitHub Copilot, the AI coding assistant from GitHub, has recently made waves by introducing a free tier to its previously subscription-only service. In this guide, we'll walk you through the steps to set up and effectively use GitHub Copilot in Visual Studio Code (VS Code).
Before diving in, it's important to mention a caveat based on my own experience. I found that the free version of GitHub Copilot didn't pass half of my coding tests. This performance might be due to the free tier's limited access to advanced AI models compared to the paid version, which taps into OpenAI's more sophisticated language learning models. Despite this, the free tier still offers a generous 50 full queries per month, providing a good opportunity to test drive the tool and see how it fits into your VS Code workflow.
Getting Started with GitHub Copilot
To begin, ensure you have VS Code installed and updated to the latest version, and that you have a GitHub account ready. Once you've opened VS Code, you'll be greeted with a prompt to start using GitHub Copilot for free.

Select the radio button and proceed to sign in. You'll go through a two-step authorization process, starting with linking your account and followed by authorizing the connection.



After authorization, you'll land on a start screen where you can choose to interact with GitHub Copilot either through chat mode or directly within your code. However, before jumping into coding, I highly recommend adjusting some settings for a more personalized experience. Click on the GitHub icon at the top of the screen and select "Manage Copilot Settings."

In the settings menu, there are three options I suggest turning off:

- Public Code Snippets: I prefer GitHub Copilot to generate code independently rather than pulling from public repositories. Although AI models are trained on public code, I choose to avoid direct incorporation when possible.
- Using My Code for Improvements: I'm not keen on GitHub using my code to enhance their service, even though I typically release my code as open-source.
- Using My Code for Training: Similarly, I don't want my code contributing to training data for AI models.
After adjusting these settings to your preference, close the settings window and return to VS Code. GitHub Copilot functions as an extension in VS Code, and you'll see it listed and activated in your https://img.xix.aiextensions pane.

Using GitHub Copilot to Enhance Your Coding
For my first test, I opened a code block in the editor and used the chat box to ask GitHub Copilot to identify any logic errors. It scanned the code and provided valuable suggestions, pointing out a potentially fatal error that I might have overlooked during initial testing.


Not only does GitHub Copilot identify issues, but it also suggests fixes, which can be applied with a single click, saving considerable time.
You can also engage with the AI directly in the code editor by pressing Control-I. I used this feature to ask Copilot to write code that highlights duplicated lines, and it delivered the code inline, right where I needed it. Pressing "https://img.xix.aiaccept" seamlessly integrates the AI-generated code into your editor.


Give GitHub Copilot a Try
That's the gist of using GitHub Copilot. With 50 free queries available each month, you have plenty of opportunities to explore its capabilities and decide if it's a tool that enhances your productivity. Why not give it a go and see how it fits into your coding routine?
Have you experimented with GitHub Copilot's free tier yet? Do you believe AI-powered coding assistants like Copilot boost productivity, or do they sometimes create more issues than they resolve? Which features do you find most helpful or frustrating? Are you at ease with Copilot's data policies, or do you have concerns about code privacy? Share your thoughts in the comments below.
Follow my daily project updates on social media. Don't forget to subscribe to my weekly newsletter and connect with me on Twitter/X at @DavidGewirtz, on Facebook at Facebook.com/DavidGewirtz, on Instagram at Instagram.com/DavidGewirtz, on Bluesky at @DavidGewirtz.com, and on YouTube at YouTube.com/DavidGewirtzTV.
Related article
Meituan Sets Three-Year AI Roadmap to Drive Business Intelligence
With the rapid evolution of internet technology, AI has become a key focus for major companies. Meituan, a leading local life services platform in China, has been investing in AI since 2023 and by 2026 had established three core directions that demon
Canva to go public next year, transitioning to AI-driven design ecosystem
Canva, the design software unicorn, plans to officially launch its IPO process next year, a move that marks the company's entry into a critical capital harvest phase as it pursues an AI transformation.According to The Information, Canva is currently
Hightouch hits $100M ARR with AI-powered marketing tools
In the past, marketers depended on designers and other creative specialists to produce images and videos for personalized online advertising campaigns.In late 2024, seven-year-old startup Hightouch introduced an AI-driven service that enables marketi
Related Special Topic Recommendations
Comments (8)
0/500
GitHub Copilot 免費版真的來了!之前還在猶豫要不要訂閱,現在可以直接試試看。在 VS Code 裡設定會很複雜嗎?這篇指南來得正是時候,晚點就來照著步驟裝裝看,希望對寫 side project 有幫助 😄
Qué guay lo de que ahora sea gratis GitHub Copilot, aunque me pregunto... ¿qué pasará cuando estos asistentes IA sean tan buenos que ya no necesitamos aprender a programar de verdad? 😅 Igual solo por eso ya merece la pena probarlo.
¡Qué chulada! Copilot gratis suena genial, pero ¿hasta dónde llegará su ayuda en proyectos complejos? Me intriga probarlo en VS Code. 😎
GitHub Copilot, the AI coding assistant from GitHub, has recently made waves by introducing a free tier to its previously subscription-only service. In this guide, we'll walk you through the steps to set up and effectively use GitHub Copilot in Visual Studio Code (VS Code).
Before diving in, it's important to mention a caveat based on my own experience. I found that the free version of GitHub Copilot didn't pass half of my coding tests. This performance might be due to the free tier's limited access to advanced AI models compared to the paid version, which taps into OpenAI's more sophisticated language learning models. Despite this, the free tier still offers a generous 50 full queries per month, providing a good opportunity to test drive the tool and see how it fits into your VS Code workflow.
Getting Started with GitHub Copilot
To begin, ensure you have VS Code installed and updated to the latest version, and that you have a GitHub account ready. Once you've opened VS Code, you'll be greeted with a prompt to start using GitHub Copilot for free.
Select the radio button and proceed to sign in. You'll go through a two-step authorization process, starting with linking your account and followed by authorizing the connection.
After authorization, you'll land on a start screen where you can choose to interact with GitHub Copilot either through chat mode or directly within your code. However, before jumping into coding, I highly recommend adjusting some settings for a more personalized experience. Click on the GitHub icon at the top of the screen and select "Manage Copilot Settings."
In the settings menu, there are three options I suggest turning off:
- Public Code Snippets: I prefer GitHub Copilot to generate code independently rather than pulling from public repositories. Although AI models are trained on public code, I choose to avoid direct incorporation when possible.
- Using My Code for Improvements: I'm not keen on GitHub using my code to enhance their service, even though I typically release my code as open-source.
- Using My Code for Training: Similarly, I don't want my code contributing to training data for AI models.
After adjusting these settings to your preference, close the settings window and return to VS Code. GitHub Copilot functions as an extension in VS Code, and you'll see it listed and activated in your https://img.xix.aiextensions pane.
Using GitHub Copilot to Enhance Your Coding
For my first test, I opened a code block in the editor and used the chat box to ask GitHub Copilot to identify any logic errors. It scanned the code and provided valuable suggestions, pointing out a potentially fatal error that I might have overlooked during initial testing.
Not only does GitHub Copilot identify issues, but it also suggests fixes, which can be applied with a single click, saving considerable time.
You can also engage with the AI directly in the code editor by pressing Control-I. I used this feature to ask Copilot to write code that highlights duplicated lines, and it delivered the code inline, right where I needed it. Pressing "https://img.xix.aiaccept" seamlessly integrates the AI-generated code into your editor.
Give GitHub Copilot a Try
That's the gist of using GitHub Copilot. With 50 free queries available each month, you have plenty of opportunities to explore its capabilities and decide if it's a tool that enhances your productivity. Why not give it a go and see how it fits into your coding routine?
Have you experimented with GitHub Copilot's free tier yet? Do you believe AI-powered coding assistants like Copilot boost productivity, or do they sometimes create more issues than they resolve? Which features do you find most helpful or frustrating? Are you at ease with Copilot's data policies, or do you have concerns about code privacy? Share your thoughts in the comments below.
Follow my daily project updates on social media. Don't forget to subscribe to my weekly newsletter and connect with me on Twitter/X at @DavidGewirtz, on Facebook at Facebook.com/DavidGewirtz, on Instagram at Instagram.com/DavidGewirtz, on Bluesky at @DavidGewirtz.com, and on YouTube at YouTube.com/DavidGewirtzTV.
Meituan Sets Three-Year AI Roadmap to Drive Business Intelligence
With the rapid evolution of internet technology, AI has become a key focus for major companies. Meituan, a leading local life services platform in China, has been investing in AI since 2023 and by 2026 had established three core directions that demon
Canva to go public next year, transitioning to AI-driven design ecosystem
Canva, the design software unicorn, plans to officially launch its IPO process next year, a move that marks the company's entry into a critical capital harvest phase as it pursues an AI transformation.According to The Information, Canva is currently
Hightouch hits $100M ARR with AI-powered marketing tools
In the past, marketers depended on designers and other creative specialists to produce images and videos for personalized online advertising campaigns.In late 2024, seven-year-old startup Hightouch introduced an AI-driven service that enables marketi
GitHub Copilot 免費版真的來了!之前還在猶豫要不要訂閱,現在可以直接試試看。在 VS Code 裡設定會很複雜嗎?這篇指南來得正是時候,晚點就來照著步驟裝裝看,希望對寫 side project 有幫助 😄
Qué guay lo de que ahora sea gratis GitHub Copilot, aunque me pregunto... ¿qué pasará cuando estos asistentes IA sean tan buenos que ya no necesitamos aprender a programar de verdad? 😅 Igual solo por eso ya merece la pena probarlo.
¡Qué chulada! Copilot gratis suena genial, pero ¿hasta dónde llegará su ayuda en proyectos complejos? Me intriga probarlo en VS Code. 😎





Home






