About GitHub Copilot in JetBrains IDEs
If you use a JetBrains IDE, GitHub Copilot can help you with a variety of tasks, including generating code suggestions, explaining how the code in your editor works, and suggesting code fixes. After installation, you can enable or disable GitHub Copilot, and you can configure advanced settings within your IDE or on GitHub. This article describes how to configure GitHub Copilot in the IntelliJ IDE, but the user interfaces of other JetBrains IDEs may differ.
Prerequisites
To configure GitHub Copilot in a JetBrains IDE, you must install the GitHub Copilot plugin. For more information, see Installing the GitHub Copilot extension in your environment.
Using or rebinding keyboard shortcuts for GitHub Copilot
You can use the default keyboard shortcuts for inline suggestions in your JetBrains IDE when using GitHub Copilot. Alternatively, you can rebind the shortcuts to your preferred keyboard shortcuts for each specific command. For more information on rebinding keyboard shortcuts in your JetBrains IDE, see the JetBrains documentation. For example, you can view the IntelliJ IDEA documentation.
Keyboard shortcuts for macOS
Action | Shortcut |
---|---|
Accept an inline suggestion | Tab |
Dismiss an inline suggestion | Esc |
Show next inline suggestion | Option (⌥) or Alt+] |
Show previous inline suggestion | Option (⌥) or Alt+[ |
Trigger inline suggestion | Option (⌥)+\ |
Open GitHub Copilot (additional suggestions in separate pane) | Option (⌥) or Alt+Return |
Keyboard shortcuts for Windows
Action | Shortcut |
---|---|
Accept an inline suggestion | Tab |
Dismiss an inline suggestion | Esc |
Show next inline suggestion | Alt+] |
Show previous inline suggestion | Alt+[ |
Trigger inline suggestion | Alt+\ |
Open GitHub Copilot (additional suggestions in separate pane) | Alt+Enter |
Keyboard shortcuts for Linux
Action | Shortcut |
---|---|
Accept an inline suggestion | Tab |
Dismiss an inline suggestion | Esc |
Show next inline suggestion | Alt+] |
Show previous inline suggestion | Alt+[ |
Trigger inline suggestion | Alt+\ |
Open GitHub Copilot (additional suggestions in separate pane) | Alt+Enter |
Enabling or disabling GitHub Copilot
You can enable or disable GitHub Copilot from within your JetBrains IDE. The GitHub Copilot status icon in the bottom panel of the JetBrains window indicates whether GitHub Copilot is enabled or disabled. When enabled, the icon is highlighted. When disabled, the icon is grayed out.
-
To enable or disable GitHub Copilot, click the status icon in the bottom panel on the right of the JetBrains window.
-
If you are disabling GitHub Copilot, you will be asked whether you want to disable it globally, or for the language of the file you are currently editing. To disable globally, click Disable Completions. Alternatively, click the language-specific button to disable GitHub Copilot for the specified language.
Configuring advanced settings for GitHub Copilot
You can manage advanced settings for GitHub Copilot in your JetBrains IDE, such as how your IDE displays code completions, and which languages you want to enable or disable for GitHub Copilot.
- JetBrains IDE에서 파일 메뉴(Windows) 또는 메뉴 모음(macOS)에서 애플리케이션의 이름을 클릭한 다음 설정을 클릭합니다.
- 언어 및 프레임워크에서 GitHub Copilot 을 클릭합니다.
- Edit the settings according to your personal preferences.
- To adjust the behavior and appearance of code suggestions, and whether to automatically check for updates, select or deselect the corresponding checkboxes.
- If you have selected to receive automatic updates, you can choose whether to receive stable, but less frequent updates, or nightly updates, which may be less stable. Click the Update channel dropdown and select Stable for stable updates, or Nightly for nightly updates.
Configuring language settings for GitHub Copilot
You can specify which languages you want to activate or deactivate GitHub Copilot for either in the IDE or by editing your github-copilot.xml
file. If you make changes to language settings in your IDE, you can individually select and deselect the languages you want to activate or deactivate.
If you make changes to the language settings in your github-copilot.xml
file, you can specify individual languages, or you can use a wildcard to activate or deactivate GitHub Copilot for all languages. You can also specify exceptions, which will override the wild card setting for the specified languages. For example, you can deactivate GitHub Copilot for all languages, except for Python and YAML. By default, when you install the GitHub Copilot extension, GitHub Copilot is activated for all languages.
Configuring language settings in the IDE
- JetBrains IDE에서 파일 메뉴(Windows) 또는 메뉴 모음(macOS)에서 애플리케이션의 이름을 클릭한 다음 설정을 클릭합니다.
- 언어 및 프레임워크에서 GitHub Copilot 을 클릭합니다.
- Under "Languages," select or deselect the checkboxes for the languages you want to activate or deactivate GitHub Copilot for.
- Click Apply, and then click OK.
- Restart your JetBrains IDE for the changes to take effect.
Editing your github-copilot.xml
file
To configure language settings in the github-copilot.xml
file, you must edit the languageAllowList
. Every line you add to the languageAllowList
must contain an entry key and a value. The entry key is the name of the language, or (*
) for a wildcard. The value is either true
or false
. If the value is true
, GitHub Copilot is activated for the specified language. If the value is false
, GitHub Copilot is deactivated for the specified language.
The file is located in the following directory:
- macOS:
~/Library/Application Support/JetBrains/<product><version>/options/github-copilot.xml
- Windows:
%APPDATA%\JetBrains\<product><version>\options\github-copilot.xml
- Linux:
~/.config/JetBrains/<product><version>/options/github-copilot.xml
For example, if you are using IntelliJ IDEA 2021.1 on macOS, the file is located at ~/Library/Application Support/JetBrains/IdeaIC2021.1/options/github-copilot.xml
.
The github-copilot.xml
file might not be generated until you make a change to your default language configuration in the IDE's settings. If you cannot locate the file, you should try modifying the default language settings in the IDE. For more information, see Configuring language settings in the IDE.
Alternatively, you can create the file manually and save it in the location for your operating system listed above. For more information, see Example language configurations.
-
Open the
github-copilot.xml
file in a text editor. -
Between the
<map>
tags, add the line or lines for the languages you want to activate or deactivate GitHub Copilot for. For example, to deactivate GitHub Copilot for all languages:XML <entry key="*" value="false" />
<entry key="*" value="false" />
-
Save the changes to the
github-copilot.xml
file. -
Restart your JetBrains IDE for the changes to take effect.
Example language configurations
The default configuration of the github-copilot.xml
file, which enables GitHub Copilot for all languages is as follows:
<application> <component name="github-copilot"> <languageAllowList> <map> <entry key="*" value="true" /> </map> </languageAllowList> </component> </application>
<application>
<component name="github-copilot">
<languageAllowList>
<map>
<entry key="*" value="true" />
</map>
</languageAllowList>
</component>
</application>
To deactivate GitHub Copilot for all languages, the wildcard (*
) value is changed to false
:
<application> <component name="github-copilot"> <languageAllowList> <map> <entry key="*" value="false" /> </map> </languageAllowList> </component> </application>
<application>
<component name="github-copilot">
<languageAllowList>
<map>
<entry key="*" value="false" />
</map>
</languageAllowList>
</component>
</application>
To specify languages individually, add an entry for each language you want to activate or deactivate GitHub Copilot for. Specific language settings will override the wildcard. For example, to activate GitHub Copilot for Python and YAML, and deactivate GitHub Copilot for all other languages, add the following entries:
<application> <component name="github-copilot"> <languageAllowList> <map> <entry key="*" value="false" /> <entry key="Python" value="true" /> <entry key="YAML" value="true" /> </map> </languageAllowList> </component> </application>
<application>
<component name="github-copilot">
<languageAllowList>
<map>
<entry key="*" value="false" />
<entry key="Python" value="true" />
<entry key="YAML" value="true" />
</map>
</languageAllowList>
</component>
</application>
You can also add a configuration to make the languageAllowList
readonly in the IDE's settings. This will prevent you from changing the language settings in the IDE. For example:
<application> <component name="github-copilot"> <option name="languageAllowListReadOnly" value="true" /> <languageAllowList> <map> <entry key="*" value="true" /> </map> </languageAllowList> </component> </application>
<application>
<component name="github-copilot">
<option name="languageAllowListReadOnly" value="true" />
<languageAllowList>
<map>
<entry key="*" value="true" />
</map>
</languageAllowList>
</component>
</application>
GitHub.com에서 Copilot 설정 구성
Copilot Pro 플랜을 사용하는 경우, 공개적으로 사용 가능한 코드와 일치하는 코드 완성 제안을 허용하거나 차단하도록 선택할 수 있습니다. 이는 GitHub.com의 개인 설정에서 구성합니다. Managing Copilot policies as an individual subscriber을(를) 참조하세요.
GHE.com에서 계정에 인증
GHE.com의 관리형 사용자 계정에 대해 Copilot 플랜을 사용하는 경우 로그인하기 전에 일부 설정을 업데이트해야 합니다. Using GitHub Copilot with an account on GHE.com을(를) 참조하세요.
Further reading
About GitHub Copilot in Visual Studio
If you use Visual Studio, GitHub Copilot can help you with a variety of tasks, including generating code suggestions, explaining how the code in your editor works, and suggesting code fixes. After installation, you can enable or disable GitHub Copilot, and you can configure advanced settings within Visual Studio or on GitHub.
Prerequisites
To configure GitHub Copilot in Visual Studio, you must install the GitHub Copilot plugin. For more information, see Installing the GitHub Copilot extension in your environment.
Using or rebinding keyboard shortcuts for GitHub Copilot
You can use the default keyboard shortcuts in Visual Studio when using GitHub Copilot. Alternatively, you can rebind the shortcuts in the Tools settings for Visual Studio using your preferred keyboard shortcuts for each specific command. You can search for each keyboard shortcut by its command name in the Keyboard Shortcuts editor.
Using default keyboard shortcuts
Action | Shortcut | Command name |
---|---|---|
Show next inline suggestion | Alt+. | Edit.NextSuggestion |
Show previous inline suggestion | Alt+, | Edit.PreviousSuggestion |
Rebinding keyboard shortcuts
If you don't want to use the default keyboard shortcuts in Visual Studio when using GitHub Copilot, you can rebind the shortcuts in the Keyboard editor using your preferred keyboard shortcuts for each specific command.
-
In the Visual Studio menu bar, under Tools, click Options.
-
In the "Options" dialog, under Environment, click Keyboard.
-
Under "Show commands containing:", search for the command you want to rebind.
-
Under "Press shortcut keys," type the shortcut you want to assign to the command, then click Assign.
GitHub Copilot 사용 또는 사용 안 함
Visual Studio 창의 아래쪽 패널에 있는 GitHub Copilot 상태 아이콘은 GitHub Copilot이 사용하도록 설정되었는지 여부를 나타냅니다. 사용하도록 설정하면 아이콘의 배경색이 상태 표시줄의 색과 일치합니다. 사용하지 않도록 설정하면 통과하는 대각선이 표시됩니다.
-
GitHub Copilot을 사용하거나 사용하지 않도록 설정하려면 Visual Studio 창의 아래쪽 패널에서 GitHub Copilot 아이콘을 클릭합니다.
-
GitHub Copilot을 사용하지 않도록 설정하는 경우 전역적으로 또는 현재 편집 중인 파일의 언어에 대해 제안을 사용하지 않도록 설정할지 묻는 메시지가 표시됩니다.
- GitHub Copilot에서 제안을 전역적으로 사용하지 않도록 설정하려면 전역적으로 사용을 클릭합니다.
- 지정된 언어에 대한 GitHub Copilot에서 제안을 사용하지 않으려면 언어에 대해 사용을 클릭합니다.
Configuring ReSharper for GitHub Copilot
If you use ReSharper, GitHub Copilot may work best when you configure ReSharper to use GitHub Copilot's native IntelliSense. For more information about ReSharper, see the ReSharper documentation
- In the Visual Studio menu bar, under Extensions, click ReSharper, then click Options.
- In the "Options" dialog, under Environment, click IntelliSense and then click General.
- Under "General" select Visual Studio and then click Save.
GitHub.com에서 Copilot 설정 구성
Copilot Pro 플랜을 사용하는 경우, 공개적으로 사용 가능한 코드와 일치하는 코드 완성 제안을 허용하거나 차단하도록 선택할 수 있습니다. 이는 GitHub.com의 개인 설정에서 구성합니다. Managing Copilot policies as an individual subscriber을(를) 참조하세요.
GHE.com에서 계정에 인증
GHE.com의 관리형 사용자 계정에 대해 Copilot 플랜을 사용하는 경우 로그인하기 전에 일부 설정을 업데이트해야 합니다. Using GitHub Copilot with an account on GHE.com을(를) 참조하세요.
Enabling 다음 편집 제안
To use 다음 편집 제안 in Visual Studio, you need to enable the feature first.
- In the Visual Studio menu bar, under Tools, click Options.
- In the "Options" dialog, under GitHub, click Copilot and then click Copilot Completions.
- Check Enable 다음 편집 제안.
Further reading
About GitHub Copilot in Visual Studio Code
If you use Visual Studio Code, GitHub Copilot can help you with a variety of tasks, including generating code suggestions, explaining how the code in your editor works, and suggesting edits based on your instructions. You can enable or disable GitHub Copilot, and configure advanced settings within Visual Studio Code or on GitHub.
You can learn more about scenarios and setup in the VS Code documentation.
Keyboard shortcuts for GitHub Copilot
You can use the default keyboard shortcuts for GitHub Copilot in GitHub Copilot. Search keyboard shortcuts by command name in the Keyboard Shortcuts editor.
Alternatively, you can rebind the shortcut for each command in the Keyboard Shortcuts editor. For more information, see the VS Code documentation on editing shortcuts.
Keyboard shortcuts for macOS
Action | Shortcut | Command name |
---|---|---|
Accept an inline suggestion | Tab | editor.action.inlineSuggest.commit |
Dismiss an inline suggestion | Esc | editor.action.inlineSuggest.hide |
Show next inline suggestion | Option (⌥)+] | editor.action.inlineSuggest.showNext |
Show previous inline suggestion | Option (⌥)+[ | editor.action.inlineSuggest.showPrevious |
Trigger inline suggestion | Option (⌥)+\ | editor.action.inlineSuggest.trigger |
Open GitHub Copilot (additional suggestions in separate pane) | Ctrl+Return | github.copilot.generate |
Toggle GitHub Copilot on/off | No default shortcut | github.copilot.toggleCopilot |
Keyboard shortcuts for Windows
Action | Shortcut | Command name |
---|---|---|
Accept an inline suggestion | Tab | editor.action.inlineSuggest.commit |
Dismiss an inline suggestion | Esc | editor.action.inlineSuggest.hide |
Show next inline suggestion | Alt+] | editor.action.inlineSuggest.showNext |
Show previous inline suggestion | Alt+[ | editor.action.inlineSuggest.showPrevious |
Trigger inline suggestion | Alt+\ | editor.action.inlineSuggest.trigger |
Open GitHub Copilot (additional suggestions in separate pane) | Ctrl+Enter | github.copilot.generate |
Toggle GitHub Copilot on/off | No default shortcut | github.copilot.toggleCopilot |
Keyboard shortcuts for Linux
Action | Shortcut | Command name |
---|---|---|
Accept an inline suggestion | Tab | editor.action.inlineSuggest.commit |
Dismiss an inline suggestion | Esc | editor.action.inlineSuggest.hide |
Show next inline suggestion | Alt+] | editor.action.inlineSuggest.showNext |
Show previous inline suggestion | Alt+[ | editor.action.inlineSuggest.showPrevious |
Trigger inline suggestion | Alt+\ | editor.action.inlineSuggest.trigger |
Open GitHub Copilot (additional suggestions in separate pane) | Ctrl+Enter | github.copilot.generate |
Toggle GitHub Copilot on/off | No default shortcut | github.copilot.toggleCopilot |
GitHub Copilot 코드 완성을 사용 또는 사용 안 함
Visual Studio Code에서 GitHub Copilot을 사용하거나 사용하지 않도록 설정할 수 있습니다.
-
코드 완성을 구성하려면 Visual Studio Code의 제목 표시줄에서 아이콘 옆에 있는 화살표를 클릭한 다음, 코드 완성 구성을 선택합니다.
-
“Copilot 완성 구성” 대화 상자에서 완성 사용 또는 완성 사용 안 함을 선택하세요.
Enabling or disabling inline suggestions
You can choose to enable or disable inline suggestions for GitHub Copilot in Visual Studio Code.
-
파일 메뉴에서 기본 설정으로 이동하고 설정을 클릭합니다.
-
In the left-side panel of the settings tab, click Extensions and then select Copilot.
-
Under "Inline Suggest:Enable," select or deselect the checkbox to enable or disable inline suggestions.
Enabling 다음 편집 제안
You can enable 다음 편집 제안 via the VS Code setting github.copilot.nextEditSuggestions.enabled
. For more detailed instructions, see Enabling edit suggestions in the VS Code documentation.
Copilot Business 또는 Copilot Enterprise 플랜을 사용하는 경우, 해당 플랜을 제공하는 조직 또는 엔터프라이즈에서 Editor preview features 설정을 활성화해야 합니다. Managing policies for Copilot in your organization 또는 Managing policies and features for Copilot in your enterprise을(를) 참조하세요.
Enabling or disabling GitHub Copilot for specific languages
You can specify which languages you want to enable or disable GitHub Copilot for.
-
From the Visual Studio Code, click the Extensions tab, then navigate to the Copilot section. For more information, see Enabling or disabling inline suggestions.
-
Under "Enable or disable Copilot for specified languages," click Edit in settings.json.
-
In the settings.json file, add or remove the languages you want to enable or disable GitHub Copilot for. For example, to enable Python in GitHub Copilot, add
"python": true
to the list, ensuring there is a trailing comma after all but the last list item.{ "editor.inlineSuggest.enabled": true, "github.copilot.enable": { "*": true, "yaml": false, "plaintext": false, "markdown": true, "javascript": true, "python": true } }
Revoking GitHub Copilot authorization
Visual Studio Code retains authorization to use GitHub Copilot through a particular GitHub account. If you want to prevent your GitHub account being used for GitHub Copilot on a device you no longer have access to, you can revoke authorization and then go through the authorization process again. The device you previously used will not have the new authorization.
-
GitHub의 페이지 오른쪽 상단에서 프로필 사진을 선택한 다음, 설정을 선택합니다.
-
사이드바의 “통합” 섹션에서 애플리케이션을 클릭합니다.
-
권한이 있는 OAuth 앱 탭을 클릭합니다.
-
Click the ... next to GitHub for VS Code and click Revoke.
-
“GitHub Apps 권한 부여” 탭을 클릭합니다.
-
If the GitHub Copilot extension is listed, click Revoke.
After revoking authorization, Visual Studio Code will be able to continue using GitHub Copilot in a current session for a maximum of 30 minutes. After that time, you will need to reauthorize GitHub Copilot for use in Visual Studio Code again.
Re-authorizing GitHub Copilot
After you have revoked authorization, if you want to continue using GitHub Copilot, you will need to complete the reauthorization process.
-
In the bottom left corner of Visual Studio Code, click the Accounts icon, hover over your username, and click Sign out.
-
In the "Visual Studio Code" pop-up, click Sign Out.
-
In the bottom left corner of Visual Studio Code, click the Accounts icon, hover over your username, and click Sign in with GitHub to use GitHub Copilot.
-
In your browser, GitHub will request the necessary permissions for GitHub Copilot. To approve these permissions, click Continue.
-
In the "Open Visual Studio Code?" pop-up, click Open Visual Studio Code.
GitHub.com에서 Copilot 설정 구성
Copilot Pro 플랜을 사용하는 경우, 공개적으로 사용 가능한 코드와 일치하는 코드 완성 제안을 허용하거나 차단하도록 선택할 수 있습니다. 이는 GitHub.com의 개인 설정에서 구성합니다. Managing Copilot policies as an individual subscriber을(를) 참조하세요.
GHE.com에서 계정에 인증
GHE.com의 관리형 사용자 계정에 대해 Copilot 플랜을 사용하는 경우 로그인하기 전에 일부 설정을 업데이트해야 합니다. Using GitHub Copilot with an account on GHE.com을(를) 참조하세요.
Further reading
Configuring GitHub Copilot in Vim/Neovim
For guidance on configuring GitHub Copilot in Vim/Neovim, invoke the GitHub Copilot documentation in Vim/Neovim by running the following command:
:help copilot
Rebinding keyboard shortcuts
You can rebind the keyboard shortcuts in Vim/Neovim when using GitHub Copilot to use your preferred keyboard shortcuts for each specific command. For more information, see the Map article in the Neovim documentation.
GitHub.com에서 Copilot 설정 구성
Copilot Pro 플랜을 사용하는 경우, 공개적으로 사용 가능한 코드와 일치하는 코드 완성 제안을 허용하거나 차단하도록 선택할 수 있습니다. 이는 GitHub.com의 개인 설정에서 구성합니다. Managing Copilot policies as an individual subscriber을(를) 참조하세요.
GHE.com에서 계정에 인증
GHE.com의 관리형 사용자 계정에 대해 Copilot 플랜을 사용하는 경우 로그인하기 전에 일부 설정을 업데이트해야 합니다. Using GitHub Copilot with an account on GHE.com을(를) 참조하세요.
Further reading
About GitHub Copilot in Xcode
If you use Xcode, GitHub Copilot can help you with a variety of tasks, including generating code suggestions, explaining how the code in your editor works, and suggesting code fixes. After installation, you can enable or disable GitHub Copilot, and you can configure advanced settings within Xcode or on GitHub.
Prerequisites
To configure GitHub Copilot for Xcode, you must install the GitHub Copilot extension. See Installing the GitHub Copilot extension in your environment.
Using or rebinding keyboard shortcuts for GitHub Copilot
You can use the default keyboard shortcuts for inline suggestions in Xcode when using GitHub Copilot. Alternatively, you can rebind the shortcuts to your preferred keyboard shortcuts for each specific command.
Default keyboard shortcuts
Action | Shortcut |
---|---|
Accept the first line of a suggestion | Tab |
View full suggestion | Hold Option |
Accept full suggestion | Option+Tab |
Rebinding keyboard shortcuts
If you don't want to use the default keyboard shortcuts for GitHub Copilot, you can rebind the shortcuts in the Key Bindings editor and use your preferred keyboard shortcuts.
If you want to use something besides Tab to accept the first line of a suggestion, you need to disable the "Accept suggestions with Tab" option in the advanced settings in the GitHub Copilot for Xcode application. Additionally, we currently only support the Option key for the "View full suggestion" action.
- In the Xcode menu, click Xcode then Settings.
- Click Key Bindings and search for "Copilot" to find the commands you want to rebind.
Enabling or disabling GitHub Copilot
You can enable or disable the GitHub Copilot extension from within the application.
- Open the GitHub Copilot for Xcode application.
- At the top of the application window, click Advanced.
- In the "Suggestion Settings" section, use the "Request suggestions while typing" toggle to enable or disable the extension.
Automatically updating GitHub Copilot for Xcode
You can configure the GitHub Copilot extension to automatically check for updates.
- Open the GitHub Copilot for Xcode application.
- Select Automatically check for updates.
After updating the extension, Xcode must be restarted for the changes to take effect.
GitHub.com에서 Copilot 설정 구성
Copilot Pro 플랜을 사용하는 경우, 공개적으로 사용 가능한 코드와 일치하는 코드 완성 제안을 허용하거나 차단하도록 선택할 수 있습니다. 이는 GitHub.com의 개인 설정에서 구성합니다. Managing Copilot policies as an individual subscriber을(를) 참조하세요.
GHE.com에서 계정에 인증
GHE.com의 관리형 사용자 계정에 대해 Copilot 플랜을 사용하는 경우 로그인하기 전에 일부 설정을 업데이트해야 합니다. Using GitHub Copilot with an account on GHE.com을(를) 참조하세요.
About GitHub Copilot in Eclipse
If you use Eclipse, GitHub Copilot can provide code suggestions as you work in the IDE. You can also use the Copilot 채팅 panel to work with Copilot as your AI pair programmer.
After you install GitHub Copilot in Eclipse, you can enable or disable it, and you can configure advanced settings within the IDE.
Prerequisites
To configure GitHub Copilot in Eclipse, you must install the GitHub Copilot extension. See Installing the GitHub Copilot extension in your environment.
Using or rebinding keyboard shortcuts for GitHub Copilot
You can use the default keyboard shortcuts for inline suggestions in Eclipse when using GitHub Copilot. Alternatively, you can rebind the shortcuts to your preferred keyboard shortcuts for each specific command.
Rebinding keyboard shortcuts
If you don't want to use the default keyboard shortcuts for GitHub Copilot, you can rebind the shortcuts in the Key Bindings editor and use your preferred keyboard shortcuts.
- In the IDE, click Copilot to open the menu.
- Click Edit Keyboard Shortcuts... to rebind the shortcuts.
Settings and configurations
For advanced settings, you can set auto-completion behavior, configure proxy, and assign a GitHub Enterprise authentication endpoint.
GitHub.com에서 Copilot 설정 구성
Copilot Pro 플랜을 사용하는 경우, 공개적으로 사용 가능한 코드와 일치하는 코드 완성 제안을 허용하거나 차단하도록 선택할 수 있습니다. 이는 GitHub.com의 개인 설정에서 구성합니다. Managing Copilot policies as an individual subscriber을(를) 참조하세요.
GHE.com에서 계정에 인증
GHE.com의 관리형 사용자 계정에 대해 Copilot 플랜을 사용하는 경우 로그인하기 전에 일부 설정을 업데이트해야 합니다. Using GitHub Copilot with an account on GHE.com을(를) 참조하세요.