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 Установка расширения GitHub Copilot в вашей среде.
- Signed in to GitHub in your IDE. If you have authentication problems, see Устранение распространённых проблем с 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 Задавать вопросы GitHub Copilot в вашем 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 Матрица функций 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.
-
В файле JavaScript введите следующий заголовок функции.
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.
-
Чтобы принять предложение, нажмите клавишу 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 Добавление пользовательских инструкций репозитория для GitHub Copilot в ваш IDE.
- Try the GitHub Copilot app. See Начало работы с GitHub приложение Copilot.