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 IDE에서 GitHub Copilot에 질문하기.
-
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 IDE에서 GitHub Copilot에 대한 리포지토리 사용자 지정 지침 추가.
- Try the GitHub Copilot app. See GitHub Copilot 앱 시작.