GitHub Copilot is available in supported IDEs: Visual Studio Code, Visual Studio, JetBrains IDEs, Eclipse, and XCode. It can answer questions and explain concepts, and suggest or complete code as you work. In IDEs that support agent mode, it can also propose edits and validate files.
This quickstart shows you how to use these capabilities. It takes about ten minutes.
Prerequisites
- An active Copilot plan. See About GitHub Copilot.
- The Copilot extension for your IDE. See Instalando a extensão GitHub Copilot em seu ambiente.
- Signed in to GitHub in your IDE. If you have authentication problems, see Solução de problemas comuns com GitHub Copilot.
Ask a question about your code
-
Open an existing code file in your editor.
-
Open the Copilot Chat window.
The way you do this depends on your IDE.
- In Visual Studio Code, press Ctrl+Alt+I (Windows/Linux) or Control+Command+I (macOS).
- In other IDEs, look for Copilot Chat in the menu bar or sidebar. See Fazendo perguntas ao GitHub Copilot no seu IDE.
-
Type
what does this file do, then press Enter.Copilot's answer displays below your question.
-
Select a line of code in the editor, then type
explain this linein the chat window.
Copilot can see the file you have open, so you can ask about your code instead of describing it first.
Let Copilot work through a task
Most IDEs support agent mode. In agent mode, you describe what you want, and Copilot decides which files to change, makes the edits, and runs commands with your approval.
To check whether your IDE supports agent mode, see matriz de recursos Copilot.
-
In the chat window, select Agent, then describe a task. For example,
Create a task manager web app with the ability to add, delete, and mark tasks as completed. -
Press Enter.
Copilot generates the files and code needed.
-
Review the changes, then use your IDE's controls to accept them.
When you're ready, save your changes, and commit when everything looks good.
Get your first inline suggestion
GitHub Copilot can suggest code as you work and supports many programming languages. This example uses JavaScript, but you can follow along in your preferred language.
-
In your IDE, create a new JavaScript (*.js) file.
-
No arquivo JavaScript, digite o cabeçalho da função a seguir.
JavaScript function calculateDaysBetweenDates(begin, end) {function calculateDaysBetweenDates(begin, end) {Copilot will automatically suggest an entire function body in grayed text. The exact suggestion may vary.
-
Para aceitar a sugestão, pressione Tab.
When you're ready, save your changes, and commit when everything looks good.
Next steps
- Customize Copilot in your IDE with custom instructions. See Adicionando instruções personalizadas de repositório para o GitHub Copilot em seu IDE.
- Try the GitHub Copilot app. See Introdução ao GitHub aplicativo Copilot.