@@ -47,12 +47,13 @@ Push protection has some limitations. For more information, see [AUTOTITLE](/cod
|
|||||||
|
|
||||||
## How push protection works
|
## How push protection works
|
||||||
|
|
||||||
Push protection works:
|
Push protection blocks secrets detected in:
|
||||||
|
|
||||||
* From the command line. See [AUTOTITLE](/code-security/secret-scanning/working-with-secret-scanning-and-push-protection/working-with-push-protection-from-the-command-line).
|
* Pushes from the command line. See [AUTOTITLE](/code-security/secret-scanning/working-with-secret-scanning-and-push-protection/working-with-push-protection-from-the-command-line).
|
||||||
* In the {% data variables.product.prodname_dotcom %} UI. See [AUTOTITLE](/code-security/secret-scanning/working-with-secret-scanning-and-push-protection/working-with-push-protection-in-the-github-ui).{% ifversion push-protection-delegated-bypass-file-upload-support %}
|
* Commits made in the {% data variables.product.prodname_dotcom %} UI. See [AUTOTITLE](/code-security/secret-scanning/working-with-secret-scanning-and-push-protection/working-with-push-protection-in-the-github-ui).{% ifversion push-protection-delegated-bypass-file-upload-support %}
|
||||||
* On files uploaded onto the repository on {% data variables.product.prodname_dotcom %}.{% endif %}{% ifversion secret-scanning-push-protection-content-endpoints %}
|
* File uploads to a repository on {% data variables.product.prodname_dotcom %}.{% endif %}{% ifversion secret-scanning-push-protection-content-endpoints %}
|
||||||
* From the REST API. See [AUTOTITLE](/code-security/secret-scanning/working-with-secret-scanning-and-push-protection/working-with-push-protection-from-the-rest-api).{% endif %}
|
* Requests to the REST API. See [AUTOTITLE](/code-security/secret-scanning/working-with-secret-scanning-and-push-protection/working-with-push-protection-from-the-rest-api).{% endif %}
|
||||||
|
* Interactions with the {% data variables.product.github %} MCP server (public repositories only). See [AUTOTITLE](/enterprise-cloud@latest/code-security/secret-scanning/working-with-secret-scanning-and-push-protection/working-with-push-protection-and-the-github-mcp-server).
|
||||||
|
|
||||||
Once enabled, if push protection detects a potential secret during a push attempt, it will block the push and provide a detailed message explaining the reason for the block. You will need to review the code in question, remove any sensitive information, and reattempt the push.
|
Once enabled, if push protection detects a potential secret during a push attempt, it will block the push and provide a detailed message explaining the reason for the block. You will need to review the code in question, remove any sensitive information, and reattempt the push.
|
||||||
|
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ children:
|
|||||||
- /working-with-push-protection-from-the-command-line
|
- /working-with-push-protection-from-the-command-line
|
||||||
- /working-with-push-protection-from-the-rest-api
|
- /working-with-push-protection-from-the-rest-api
|
||||||
- /working-with-push-protection-in-the-github-ui
|
- /working-with-push-protection-in-the-github-ui
|
||||||
|
- /working-with-push-protection-and-the-github-mcp-server
|
||||||
redirect_from:
|
redirect_from:
|
||||||
- /code-security/secret-scanning/working-with-push-protection
|
- /code-security/secret-scanning/working-with-push-protection
|
||||||
- /code-security/secret-scanning/pushing-a-branch-blocked-by-push-protection
|
- /code-security/secret-scanning/pushing-a-branch-blocked-by-push-protection
|
||||||
|
|||||||
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
title: Working with push protection and the GitHub MCP server
|
||||||
|
shortTitle: Push protection and the GitHub MCP server
|
||||||
|
intro: 'Learn how you are protected from leaking secrets during interactions with the {% data variables.product.github %} MCP server, and how to bypass a push protection block if you need to.'
|
||||||
|
product: 'Public repositories on {% data variables.product.prodname_dotcom_the_website %}'
|
||||||
|
permissions: '{% data reusables.permissions.push-protection-resolve-block %}'
|
||||||
|
versions:
|
||||||
|
feature: copilot
|
||||||
|
type: how_to
|
||||||
|
topics:
|
||||||
|
- Secret scanning
|
||||||
|
- Secret Protection
|
||||||
|
- Alerts
|
||||||
|
- Repositories
|
||||||
|
- Copilot
|
||||||
|
---
|
||||||
|
|
||||||
|
## About push protection and the {% data variables.product.github %} MCP server
|
||||||
|
|
||||||
|
Push protection prevents you from inadvertently exposing secrets, such as tokens, keys and credentials, in your repository.
|
||||||
|
|
||||||
|
When you're interacting with the {% data variables.product.github %} MCP server, push protection blocks secrets in AI-generated responses as well as preventing secrets from being included in any actions you perform, such as creating an issue.
|
||||||
|
|
||||||
|
This protection is on by default for all interactions between the {% data variables.product.github %} MCP server and **public repositories** only, regardless of whether push protection is enabled on the repository's security settings page.
|
||||||
|
|
||||||
|
## Resolving a block
|
||||||
|
|
||||||
|
To resolve the block, you can either:
|
||||||
|
|
||||||
|
* **Remove** the secret from the content of your request before trying again.
|
||||||
|
* **Bypass the block.** If push protection is enabled for the repository, or you have push protection enabled for your personal account, you'll see an option to bypass the push protection block. You should carefully evaluate if it's safe to include the secret in your request before continuing.
|
||||||
|
|
||||||
|
## Further reading
|
||||||
|
|
||||||
|
* [AUTOTITLE](/code-security/secret-scanning/introduction/about-push-protection)
|
||||||
|
* [About the {% data variables.product.github %} MCP server](/copilot/concepts/about-mcp#about-the-github-mcp-server)
|
||||||
@@ -37,6 +37,8 @@ The {% data variables.product.github %} MCP server is a Model Context Protocol (
|
|||||||
* Connect third-party tools (like Cursor, Windsurf, or future integrations) to leverage {% data variables.product.github %}’s context and AI capabilities.
|
* Connect third-party tools (like Cursor, Windsurf, or future integrations) to leverage {% data variables.product.github %}’s context and AI capabilities.
|
||||||
* Enable cloud-based workflows that work from any device, without local setup.
|
* Enable cloud-based workflows that work from any device, without local setup.
|
||||||
|
|
||||||
|
For public repositories, interactions with the {% data variables.product.github %} MCP server are secured by push protection, which blocks secrets from being included in AI-generated responses and prevents you from exposing secrets through any actions you perform using the server, such as creating an issue. See [AUTOTITLE](/code-security/secret-scanning/working-with-secret-scanning-and-push-protection/working-with-push-protection-and-the-github-mcp-server).
|
||||||
|
|
||||||
You can access the {% data variables.product.github %} MCP server remotely through {% data variables.product.prodname_vscode %}, or other editors that support remote MCP; or you can run it locally in any MCP-compatible editor, allowing you to choose between the convenience of a hosted solution or the customizability of a self-hosted setup.
|
You can access the {% data variables.product.github %} MCP server remotely through {% data variables.product.prodname_vscode %}, or other editors that support remote MCP; or you can run it locally in any MCP-compatible editor, allowing you to choose between the convenience of a hosted solution or the customizability of a self-hosted setup.
|
||||||
|
|
||||||
If you want to utilize the remote {% data variables.product.github %} MCP server, you can do so in a few steps, without any local setup. This is particularly useful for users who want to quickly leverage {% data variables.product.github %}’s AI capabilities without the overhead of managing a local MCP server.
|
If you want to utilize the remote {% data variables.product.github %} MCP server, you can do so in a few steps, without any local setup. This is particularly useful for users who want to quickly leverage {% data variables.product.github %}’s AI capabilities without the overhead of managing a local MCP server.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: About billing for individual Copilot plans
|
title: About billing for individual GitHub Copilot plans
|
||||||
shortTitle: Billing for individuals
|
shortTitle: Billing for individuals
|
||||||
intro: 'Learn how billing works for {% data variables.copilot.copilot_pro_short %} and {% data variables.copilot.copilot_pro_plus_short %}.'
|
intro: 'Learn how billing works for {% data variables.copilot.copilot_pro_short %} and {% data variables.copilot.copilot_pro_plus_short %}.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: About individual Copilot plans and benefits
|
title: About individual GitHub Copilot plans and benefits
|
||||||
shortTitle: Individual plans
|
shortTitle: Individual plans
|
||||||
intro: '{% data variables.product.company_short %} offers several {% data variables.product.prodname_copilot_short %} plans for individual developers, each with different features, model access, and usage limits to support a wide range of coding needs.'
|
intro: '{% data variables.product.company_short %} offers several {% data variables.product.prodname_copilot_short %} plans for individual developers, each with different features, model access, and usage limits to support a wide range of coding needs.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ If a single user receives a seat from multiple organizations in the same enterpr
|
|||||||
|
|
||||||
## Billing cycles
|
## Billing cycles
|
||||||
|
|
||||||
Billed users are calculated at the end of each billing cycle, based on the number of {% data variables.product.prodname_copilot %} seats that are assigned. You can add or remove seats at any time during the billing cycle.
|
Billed users are calculated at the end of each billing cycle, based on the number of {% data variables.product.prodname_copilot %} seats that are assigned. Although you can add or remove seats at any time during the billing cycle, billing for removed seats continues until the end of the current billing cycle. See [AUTOTITLE](/copilot/reference/copilot-billing/license-changes).
|
||||||
|
|
||||||
## Reference
|
## Reference
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: About Copilot code review
|
title: About GitHub Copilot code review
|
||||||
shortTitle: Code review
|
shortTitle: Code review
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Find out how {% data variables.product.prodname_copilot_short %} can review pull requests for you.'
|
intro: 'Find out how {% data variables.product.prodname_copilot_short %} can review pull requests for you.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: About Copilot coding agent
|
title: About GitHub Copilot coding agent
|
||||||
shortTitle: Coding agent
|
shortTitle: Coding agent
|
||||||
intro: 'You can assign {% data variables.product.github %} issues to {% data variables.product.prodname_copilot_short %}, or ask {% data variables.product.prodname_copilot_short %} to create a pull request.'
|
intro: 'You can assign {% data variables.product.github %} issues to {% data variables.product.prodname_copilot_short %}, or ask {% data variables.product.prodname_copilot_short %} to create a pull request.'
|
||||||
product: '{% data reusables.gated-features.copilot-coding-agent %}<br><a href="https://github.com/features/copilot/plans?ref_cta=Copilot+plans+signup&ref_loc=about+assigning+issues+to+copilot&ref_page=docs" target="_blank" class="btn btn-primary mt-3 mr-3 no-underline"><span>Sign up for {% data variables.product.prodname_copilot_short %}</span> {% octicon "link-external" height:16 %}</a>'
|
product: '{% data reusables.gated-features.copilot-coding-agent %}<br><a href="https://github.com/features/copilot/plans?ref_cta=Copilot+plans+signup&ref_loc=about+assigning+issues+to+copilot&ref_page=docs" target="_blank" class="btn btn-primary mt-3 mr-3 no-underline"><span>Sign up for {% data variables.product.prodname_copilot_short %}</span> {% octicon "link-external" height:16 %}</a>'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: 'About enabling {% data variables.copilot.copilot_coding_agent %}'
|
title: About enabling GitHub Copilot coding agent
|
||||||
shortTitle: 'Enable {% data variables.copilot.copilot_coding_agent_short %}'
|
shortTitle: 'Enable {% data variables.copilot.copilot_coding_agent_short %}'
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Find out about enabling {% data variables.copilot.copilot_coding_agent %} for {% data variables.copilot.copilot_enterprise %} and {% data variables.copilot.copilot_for_business %}, and about disabling the agent for specific repositories.'
|
intro: 'Find out about enabling {% data variables.copilot.copilot_coding_agent %} for {% data variables.copilot.copilot_enterprise %} and {% data variables.copilot.copilot_for_business %}, and about disabling the agent for specific repositories.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: 'Concepts for {% data variables.copilot.copilot_coding_agent %}'
|
title: Concepts for GitHub Copilot coding agent
|
||||||
shortTitle: '{% data variables.copilot.copilot_coding_agent_short_cap_c %}'
|
shortTitle: '{% data variables.copilot.copilot_coding_agent_short_cap_c %}'
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Learn how {% data variables.copilot.copilot_coding_agent %} can carry out coding tasks for you, working independently in the same workflow you use yourself.'
|
intro: 'Learn how {% data variables.copilot.copilot_coding_agent %} can carry out coding tasks for you, working independently in the same workflow you use yourself.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: 'Model Context Protocol (MCP) and {% data variables.copilot.copilot_coding_agent %}'
|
title: Model Context Protocol (MCP) and GitHub Copilot coding agent
|
||||||
shortTitle: 'MCP and {% data variables.copilot.copilot_coding_agent_short %}'
|
shortTitle: 'MCP and {% data variables.copilot.copilot_coding_agent_short %}'
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Find out about using the Model Context Protocol (MCP) with {% data variables.copilot.copilot_coding_agent %}.'
|
intro: 'Find out about using the Model Context Protocol (MCP) with {% data variables.copilot.copilot_coding_agent %}.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot code referencing
|
title: GitHub Copilot code referencing
|
||||||
shortTitle: Code referencing
|
shortTitle: Code referencing
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: '{% data variables.product.prodname_copilot %} checks suggestions for matches with publicly available code. Any matches are discarded or suggested with a code reference.'
|
intro: '{% data variables.product.prodname_copilot %} checks suggestions for matches with publicly available code. Any matches are discarded or suggested with a code reference.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot code suggestions in your IDE
|
title: GitHub Copilot code suggestions in your IDE
|
||||||
shortTitle: Code suggestions
|
shortTitle: Code suggestions
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Learn about {% data variables.product.prodname_copilot_short %} code suggestions in different IDEs.'
|
intro: 'Learn about {% data variables.product.prodname_copilot_short %} code suggestions in different IDEs.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot text completion
|
title: GitHub Copilot text completion
|
||||||
shortTitle: Text completion
|
shortTitle: Text completion
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Learn about {% data variables.copilot.copilot_autocomplete_pr %}.'
|
intro: 'Learn about {% data variables.copilot.copilot_autocomplete_pr %}.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: About Copilot Extensions
|
title: About GitHub Copilot Extensions
|
||||||
shortTitle: About extensions
|
shortTitle: About extensions
|
||||||
intro: 'Learn about the development process for {% data variables.copilot.copilot_extensions_short %}.'
|
intro: 'Learn about the development process for {% data variables.copilot.copilot_extensions_short %}.'
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: About agents for Copilot Extensions
|
title: About agents for GitHub Copilot Extensions
|
||||||
shortTitle: Agents
|
shortTitle: Agents
|
||||||
intro: 'Learn what {% data variables.copilot.copilot_agents %} are and how they can enhance your {% data variables.copilot.copilot_chat %} experience.'
|
intro: 'Learn what {% data variables.copilot.copilot_agents %} are and how they can enhance your {% data variables.copilot.copilot_chat %} experience.'
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: OpenID Connect (OIDC) for Copilot Extensions
|
title: OpenID Connect (OIDC) for GitHub Copilot Extensions
|
||||||
shortTitle: OpenID Connect
|
shortTitle: OpenID Connect
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Learn how OpenID Connect (OIDC) enables {% data variables.copilot.copilot_extensions_short %} to securely authenticate users and access cloud resources without storing long-lived credentials.'
|
intro: 'Learn how OpenID Connect (OIDC) enables {% data variables.copilot.copilot_extensions_short %} to securely authenticate users and access cloud resources without storing long-lived credentials.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: About skillsets for Copilot Extensions
|
title: About skillsets for GitHub Copilot Extensions
|
||||||
shortTitle: Skillsets
|
shortTitle: Skillsets
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Learn what {% data variables.copilot.copilot_skillsets %} are and how they simplify integrating third-party tools and functions into your {% data variables.product.prodname_copilot_short %} experience.'
|
intro: 'Learn what {% data variables.copilot.copilot_skillsets %} are and how they simplify integrating third-party tools and functions into your {% data variables.product.prodname_copilot_short %} experience.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot knowledge bases
|
title: GitHub Copilot knowledge bases
|
||||||
shortTitle: Knowledge bases
|
shortTitle: Knowledge bases
|
||||||
intro: 'Knowledge bases allow you to bring together Markdown documentation across one or more repositories, which can then be used as context for {% data variables.copilot.copilot_chat_short %}.'
|
intro: 'Knowledge bases allow you to bring together Markdown documentation across one or more repositories, which can then be used as context for {% data variables.copilot.copilot_chat_short %}.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot policies to control availability of features and models
|
title: GitHub Copilot policies to control availability of features and models
|
||||||
shortTitle: Policies
|
shortTitle: Policies
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Learn about the policies that control the availability of {% data variables.product.prodname_copilot %} features and models for users granted a license through your organization or an organization in your enterprise.'
|
intro: 'Learn about the policies that control the availability of {% data variables.product.prodname_copilot %} features and models for users granted a license through your organization or an organization in your enterprise.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Prompt engineering for Copilot Chat
|
title: Prompt engineering for GitHub Copilot Chat
|
||||||
shortTitle: Prompt engineering
|
shortTitle: Prompt engineering
|
||||||
intro: 'Follow these strategies to improve your {% data variables.product.prodname_copilot_short %} results.'
|
intro: 'Follow these strategies to improve your {% data variables.product.prodname_copilot_short %} results.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Indexing repositories for Copilot Chat
|
title: Indexing repositories for GitHub Copilot Chat
|
||||||
shortTitle: Repository indexes
|
shortTitle: Repository indexes
|
||||||
intro: '{% data variables.copilot.copilot_chat %} improves responses to questions about code by indexing your repositories.'
|
intro: '{% data variables.copilot.copilot_chat %} improves responses to questions about code by indexing your repositories.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: About organizing and sharing context with Copilot Spaces
|
title: About organizing and sharing context with GitHub Copilot Spaces
|
||||||
shortTitle: Spaces
|
shortTitle: Spaces
|
||||||
intro: 'Understand how gathering context with {% data variables.copilot.copilot_spaces %} can improve your results and help your teammates.'
|
intro: 'Understand how gathering context with {% data variables.copilot.copilot_spaces %} can improve your results and help your teammates.'
|
||||||
permissions: 'Anyone with a {% data variables.product.prodname_copilot_short %} license can use {% data variables.copilot.copilot_spaces_short %}.'
|
permissions: 'Anyone with a {% data variables.product.prodname_copilot_short %} license can use {% data variables.copilot.copilot_spaces_short %}.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Downloading a Copilot activity report for your organization or enterprise
|
title: Downloading a GitHub Copilot activity report for your organization or enterprise
|
||||||
intro: Monitor Copilot license usage with a detailed report.
|
intro: Monitor Copilot license usage with a detailed report.
|
||||||
permissions: Enterprise owners and organization owners
|
permissions: Enterprise owners and organization owners
|
||||||
product: '{% data variables.copilot.copilot_enterprise_short %} or {% data variables.copilot.copilot_business_short %}'
|
product: '{% data variables.copilot.copilot_enterprise_short %} or {% data variables.copilot.copilot_business_short %}'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: 'Managing {% data variables.copilot.copilot_coding_agent %} in your enterprise'
|
title: Managing GitHub Copilot coding agent in your enterprise
|
||||||
intro: 'Enable members of your enterprise to use {% data variables.copilot.copilot_coding_agent %} and control the repositories where it is available.'
|
intro: 'Enable members of your enterprise to use {% data variables.copilot.copilot_coding_agent %} and control the repositories where it is available.'
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
permissions: Enterprise owners
|
permissions: Enterprise owners
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Managing policies and features for Copilot in your enterprise
|
title: Managing policies and features for GitHub Copilot in your enterprise
|
||||||
intro: 'Control the availability of features for {% data variables.product.prodname_copilot %} in your enterprise using policies.'
|
intro: 'Control the availability of features for {% data variables.product.prodname_copilot %} in your enterprise using policies.'
|
||||||
permissions: Enterprise owners
|
permissions: Enterprise owners
|
||||||
product: '{% data variables.copilot.copilot_enterprise_short %} or {% data variables.copilot.copilot_business_short %}'
|
product: '{% data variables.copilot.copilot_enterprise_short %} or {% data variables.copilot.copilot_business_short %}'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Canceling Copilot for your enterprise
|
title: Canceling GitHub Copilot for your enterprise
|
||||||
shortTitle: Cancel plan
|
shortTitle: Cancel plan
|
||||||
intro: 'Disabling {% data variables.product.prodname_copilot %} for all organizations in your enterprise will cancel your enterprise''s {% data variables.product.prodname_copilot_short %} plan.'
|
intro: 'Disabling {% data variables.product.prodname_copilot %} for all organizations in your enterprise will cancel your enterprise''s {% data variables.product.prodname_copilot_short %} plan.'
|
||||||
permissions: Enterprise admins
|
permissions: Enterprise admins
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Downgrading Copilot for your enterprise
|
title: Downgrading GitHub Copilot for your enterprise
|
||||||
shortTitle: Downgrade subscription
|
shortTitle: Downgrade subscription
|
||||||
intro: 'You can downgrade organizations in your enterprise from {% data variables.copilot.copilot_enterprise_short %} to {% data variables.copilot.copilot_business_short %}.'
|
intro: 'You can downgrade organizations in your enterprise from {% data variables.copilot.copilot_enterprise_short %} to {% data variables.copilot.copilot_business_short %}.'
|
||||||
permissions: Enterprise owners
|
permissions: Enterprise owners
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Managing the Copilot plan for your enterprise
|
title: Managing the GitHub Copilot plan for your enterprise
|
||||||
shortTitle: Manage plan
|
shortTitle: Manage plan
|
||||||
intro: 'Enterprise owners can manage the {% data variables.product.prodname_copilot_short %} plan for the enterprise.'
|
intro: 'Enterprise owners can manage the {% data variables.product.prodname_copilot_short %} plan for the enterprise.'
|
||||||
versions:
|
versions:
|
||||||
@@ -20,4 +20,3 @@ redirect_from:
|
|||||||
- /copilot/how-tos/administer/manage-for-enterprise/manage-plan
|
- /copilot/how-tos/administer/manage-for-enterprise/manage-plan
|
||||||
contentType: how-tos
|
contentType: how-tos
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Subscribing to Copilot for your enterprise
|
title: Subscribing to GitHub Copilot for your enterprise
|
||||||
shortTitle: Subscribe
|
shortTitle: Subscribe
|
||||||
intro: 'Enterprise owners can set up a {% data variables.copilot.copilot_enterprise_short %} or {% data variables.copilot.copilot_business_short %} plan for their enterprise.'
|
intro: 'Enterprise owners can set up a {% data variables.copilot.copilot_enterprise_short %} or {% data variables.copilot.copilot_business_short %} plan for their enterprise.'
|
||||||
permissions: Enterprise owners
|
permissions: Enterprise owners
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Upgrading Copilot for your enterprise
|
title: Upgrading GitHub Copilot for your enterprise
|
||||||
shortTitle: Upgrade plan
|
shortTitle: Upgrade plan
|
||||||
intro: 'Change your enterprise''s plan from {% data variables.copilot.copilot_business_short %} to {% data variables.copilot.copilot_enterprise_short %}.'
|
intro: 'Change your enterprise''s plan from {% data variables.copilot.copilot_business_short %} to {% data variables.copilot.copilot_enterprise_short %}.'
|
||||||
permissions: Enterprise owners
|
permissions: Enterprise owners
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: 'Adding {% data variables.copilot.copilot_coding_agent %} to your organization'
|
title: Adding GitHub Copilot coding agent to your organization
|
||||||
intro: 'Enable {% data variables.copilot.copilot_coding_agent %} for your members and control the repositories where it is available.'
|
intro: 'Enable {% data variables.copilot.copilot_coding_agent %} for your members and control the repositories where it is available.'
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
permissions: Organization owners
|
permissions: Organization owners
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Granting access to Copilot for members of your organization
|
title: Granting access to GitHub Copilot for members of your organization
|
||||||
shortTitle: Grant access
|
shortTitle: Grant access
|
||||||
intro: 'Grant access to {% data variables.product.prodname_copilot %} for some or all of the members of your organization.'
|
intro: 'Grant access to {% data variables.product.prodname_copilot %} for some or all of the members of your organization.'
|
||||||
permissions: 'Organization owners for organizations with a {% ifversion ghec %}{% data variables.copilot.copilot_enterprise_short %} or{% endif %} {% data variables.copilot.copilot_business_short %} plan.'
|
permissions: 'Organization owners for organizations with a {% ifversion ghec %}{% data variables.copilot.copilot_enterprise_short %} or{% endif %} {% data variables.copilot.copilot_business_short %} plan.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Managing requests for Copilot Business in your organization
|
title: Managing requests for GitHub Copilot Business in your organization
|
||||||
shortTitle: Manage requests for access
|
shortTitle: Manage requests for access
|
||||||
intro: 'Approve or deny requests for {% data variables.product.prodname_copilot_short %} access in your organization.'
|
intro: 'Approve or deny requests for {% data variables.product.prodname_copilot_short %} access in your organization.'
|
||||||
permissions: Organization owners
|
permissions: Organization owners
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Revoking access to Copilot for members of your organization
|
title: Revoking access to GitHub Copilot for members of your organization
|
||||||
shortTitle: Revoke access
|
shortTitle: Revoke access
|
||||||
intro: 'Remove access to {% data variables.product.prodname_copilot %} for some or all of the members of your organization.'
|
intro: 'Remove access to {% data variables.product.prodname_copilot %} for some or all of the members of your organization.'
|
||||||
permissions: 'Organization owners for organizations with a {% ifversion ghec %}{% data variables.copilot.copilot_enterprise_short %} or{% endif %} {% data variables.copilot.copilot_business_short %} plan.'
|
permissions: 'Organization owners for organizations with a {% ifversion ghec %}{% data variables.copilot.copilot_enterprise_short %} or{% endif %} {% data variables.copilot.copilot_business_short %} plan.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Canceling Copilot for your organization
|
title: Canceling GitHub Copilot for your organization
|
||||||
shortTitle: Cancel
|
shortTitle: Cancel
|
||||||
intro: 'Removing all assigned {% data variables.product.prodname_copilot %} seats in your organization will cancel your organization''s {% data variables.product.prodname_copilot_short %} plan.'
|
intro: 'Removing all assigned {% data variables.product.prodname_copilot %} seats in your organization will cancel your organization''s {% data variables.product.prodname_copilot_short %} plan.'
|
||||||
permissions: Organization owners
|
permissions: Organization owners
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Managing the Copilot plan for your organization
|
title: Managing the GitHub Copilot plan for your organization
|
||||||
shortTitle: Manage plan
|
shortTitle: Manage plan
|
||||||
intro: 'Organization owners can manage the {% data variables.product.prodname_copilot_short %} plan for their organization.'
|
intro: 'Organization owners can manage the {% data variables.product.prodname_copilot_short %} plan for their organization.'
|
||||||
versions:
|
versions:
|
||||||
@@ -17,4 +17,3 @@ redirect_from:
|
|||||||
- /copilot/how-tos/administer/manage-for-organization/manage-plan
|
- /copilot/how-tos/administer/manage-for-organization/manage-plan
|
||||||
contentType: how-tos
|
contentType: how-tos
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Subscribing to Copilot for your organization
|
title: Subscribing to GitHub Copilot for your organization
|
||||||
shortTitle: Subscribe
|
shortTitle: Subscribe
|
||||||
intro: 'Organization owners can set up a {% data variables.copilot.copilot_business_short %} plan for their organization.'
|
intro: 'Organization owners can set up a {% data variables.copilot.copilot_business_short %} plan for their organization.'
|
||||||
permissions: Organization owners
|
permissions: Organization owners
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Managing policies and features for Copilot in your organization
|
title: Managing policies and features for GitHub Copilot in your organization
|
||||||
intro: 'Control the availability of {% data variables.product.prodname_copilot %} features and models for users granted a license by your organization.'
|
intro: 'Control the availability of {% data variables.product.prodname_copilot %} features and models for users granted a license by your organization.'
|
||||||
permissions: Organization owners
|
permissions: Organization owners
|
||||||
product: 'Organizations with a {% data variables.copilot.copilot_for_business %} or {% data variables.copilot.copilot_enterprise %} plan'
|
product: 'Organizations with a {% data variables.copilot.copilot_for_business %} or {% data variables.copilot.copilot_enterprise %} plan'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Reviewing audit logs for Copilot Business
|
title: Reviewing audit logs for GitHub Copilot Business
|
||||||
shortTitle: Review audit logs
|
shortTitle: Review audit logs
|
||||||
intro: 'Review the audit logs for your {% data variables.copilot.copilot_business_short %} plan to understand what actions have been taken by which users.'
|
intro: 'Review the audit logs for your {% data variables.copilot.copilot_business_short %} plan to understand what actions have been taken by which users.'
|
||||||
redirect_from:
|
redirect_from:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Reviewing user activity data for Copilot in your organization
|
title: Reviewing user activity data for GitHub Copilot in your organization
|
||||||
shortTitle: Review user activity data
|
shortTitle: Review user activity data
|
||||||
intro: 'Review {% data variables.product.prodname_copilot %} usage in your organization to make informed decisions about seat assignment.'
|
intro: 'Review {% data variables.product.prodname_copilot %} usage in your organization to make informed decisions about seat assignment.'
|
||||||
permissions: Organization owners
|
permissions: Organization owners
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Setting permissions for a Copilot extension in your organization
|
title: Setting permissions for a GitHub Copilot extension in your organization
|
||||||
intro: 'Learn how to control access to {% data variables.copilot.copilot_extensions %}.'
|
intro: 'Learn how to control access to {% data variables.copilot.copilot_extensions %}.'
|
||||||
permissions: Organization owners
|
permissions: Organization owners
|
||||||
product: 'Organizations with a {% data variables.copilot.copilot_for_business %} or {% data variables.copilot.copilot_enterprise %} plan'
|
product: 'Organizations with a {% data variables.copilot.copilot_for_business %} or {% data variables.copilot.copilot_enterprise %} plan'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: 'Writing pull request descriptions with {% data variables.copilot.copilot_autocomplete_pr %}'
|
title: Writing pull request descriptions with GitHub Copilot text completion
|
||||||
shortTitle: Write PR descriptions
|
shortTitle: Write PR descriptions
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Write pull request descriptions more quickly and accurately with {% data variables.copilot.copilot_autocomplete_pr %}.'
|
intro: 'Write pull request descriptions more quickly and accurately with {% data variables.copilot.copilot_autocomplete_pr %}.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Manage and monitor spending for Copilot
|
title: Manage and monitor spending for GitHub Copilot
|
||||||
shortTitle: Manage and track spending
|
shortTitle: Manage and track spending
|
||||||
intro: Manage and track spending on Copilot for your company.
|
intro: Manage and track spending on Copilot for your company.
|
||||||
versions:
|
versions:
|
||||||
@@ -15,4 +15,3 @@ redirect_from:
|
|||||||
- /copilot/how-tos/spending
|
- /copilot/how-tos/spending
|
||||||
contentType: how-tos
|
contentType: how-tos
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Monitoring your Copilot usage and entitlements
|
title: Monitoring your GitHub Copilot usage and entitlements
|
||||||
shortTitle: Monitor premium requests
|
shortTitle: Monitor premium requests
|
||||||
intro: 'Learn how you can monitor your monthly usage of {% data variables.product.prodname_copilot_short %} and get the most value out of your {% data variables.product.prodname_copilot_short %} plan.'
|
intro: 'Learn how you can monitor your monthly usage of {% data variables.product.prodname_copilot_short %} and get the most value out of your {% data variables.product.prodname_copilot_short %} plan.'
|
||||||
permissions: 'Individual users on a paid {% data variables.product.prodname_copilot_short %} plan can view their own usage and entitlements. For {% data variables.copilot.copilot_business_short %} or {% data variables.copilot.copilot_enterprise_short %} plans, organization admins and billing managers can view usage reports for members.'
|
permissions: 'Individual users on a paid {% data variables.product.prodname_copilot_short %} plan can view their own usage and entitlements. For {% data variables.copilot.copilot_business_short %} or {% data variables.copilot.copilot_enterprise_short %} plans, organization admins and billing managers can view usage reports for members.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: 'Getting free access to Copilot Pro as a student, teacher, or maintainer'
|
title: 'Getting free access to GitHub Copilot Pro as a student, teacher, or maintainer'
|
||||||
shortTitle: Get free access to Copilot Pro
|
shortTitle: Get free access to Copilot Pro
|
||||||
intro: 'Learn how to use {% data variables.copilot.copilot_pro_short %} for free as a student, teacher, or open-source maintainer.'
|
intro: 'Learn how to use {% data variables.copilot.copilot_pro_short %} for free as a student, teacher, or open-source maintainer.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Getting started with a Copilot plan
|
title: Getting started with a GitHub Copilot plan
|
||||||
shortTitle: Get started with a Copilot plan
|
shortTitle: Get started with a Copilot plan
|
||||||
intro: 'You can use {% data variables.product.prodname_copilot_short %} for free, or choose a paid plan to unlock additional features, models, and request limits.'
|
intro: 'You can use {% data variables.product.prodname_copilot_short %} for free, or choose a paid plan to unlock additional features, models, and request limits.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Managing Copilot policies as an individual subscriber
|
title: Managing GitHub Copilot policies as an individual subscriber
|
||||||
shortTitle: Manage policies
|
shortTitle: Manage policies
|
||||||
intro: 'Find out how to change your personal settings on {% data variables.product.github %} to configure {% data variables.product.prodname_copilot %}''s behavior.'
|
intro: 'Find out how to change your personal settings on {% data variables.product.github %} to configure {% data variables.product.prodname_copilot %}''s behavior.'
|
||||||
product: '{% data variables.copilot.copilot_pro_short %}, {% data variables.copilot.copilot_pro_plus_short %}, and {% data variables.copilot.copilot_free_short %}'
|
product: '{% data variables.copilot.copilot_pro_short %}, {% data variables.copilot.copilot_pro_plus_short %}, and {% data variables.copilot.copilot_free_short %}'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Viewing and changing your Copilot plan
|
title: Viewing and changing your GitHub Copilot plan
|
||||||
shortTitle: View and change your Copilot plan
|
shortTitle: View and change your Copilot plan
|
||||||
intro: 'Learn how to view, cancel, or update your {% data variables.product.prodname_copilot_short %} plan, and update your billing cycle.'
|
intro: 'Learn how to view, cancel, or update your {% data variables.product.prodname_copilot_short %} plan, and update your billing cycle.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Creating and managing Copilot knowledge bases
|
title: Creating and managing GitHub Copilot knowledge bases
|
||||||
shortTitle: Create knowledge bases
|
shortTitle: Create knowledge bases
|
||||||
intro: 'Learn how to create and manage knowledge bases, which allow you to bring together Markdown documentation across one or more repositories, and then use that knowledge base as context for {% data variables.copilot.copilot_chat_short %}.'
|
intro: 'Learn how to create and manage knowledge bases, which allow you to bring together Markdown documentation across one or more repositories, and then use that knowledge base as context for {% data variables.copilot.copilot_chat_short %}.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Using extensions to integrate external tools with Copilot Chat
|
title: Using extensions to integrate external tools with GitHub Copilot Chat
|
||||||
intro: 'You can use {% data variables.copilot.copilot_extensions_short %} to interact with external tools in {% data variables.copilot.copilot_chat %}.'
|
intro: 'You can use {% data variables.copilot.copilot_extensions_short %} to interact with external tools in {% data variables.copilot.copilot_chat %}.'
|
||||||
product: '{% data reusables.gated-features.copilot-extensions %}'
|
product: '{% data reusables.gated-features.copilot-extensions %}'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Collaborating with your team using Copilot Spaces
|
title: Collaborating with your team using GitHub Copilot Spaces
|
||||||
shortTitle: Collaborate with your team
|
shortTitle: Collaborate with your team
|
||||||
intro: 'Learn how to share {% data variables.copilot.copilot_spaces %} with your team to support collaboration and knowledge sharing.'
|
intro: 'Learn how to share {% data variables.copilot.copilot_spaces %} with your team to support collaboration and knowledge sharing.'
|
||||||
permissions: 'Anyone with a {% data variables.product.prodname_copilot_short %} license can use {% data variables.copilot.copilot_spaces_short %}.'
|
permissions: 'Anyone with a {% data variables.product.prodname_copilot_short %} license can use {% data variables.copilot.copilot_spaces_short %}.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Creating and using Copilot Spaces
|
title: Creating and using GitHub Copilot Spaces
|
||||||
shortTitle: Create and use Copilot Spaces
|
shortTitle: Create and use Copilot Spaces
|
||||||
intro: 'Create spaces to organize and centralize relevant content that grounds {% data variables.product.prodname_copilot_short %}’s responses in the right context for a specific task.'
|
intro: 'Create spaces to organize and centralize relevant content that grounds {% data variables.product.prodname_copilot_short %}’s responses in the right context for a specific task.'
|
||||||
permissions: 'Anyone with a {% data variables.product.prodname_copilot_short %} license can use {% data variables.copilot.copilot_spaces_short %}.'
|
permissions: 'Anyone with a {% data variables.product.prodname_copilot_short %} license can use {% data variables.copilot.copilot_spaces_short %}.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot Spaces
|
title: GitHub Copilot Spaces
|
||||||
shortTitle: Use Copilot Spaces
|
shortTitle: Use Copilot Spaces
|
||||||
intro: 'Organize and centralize relevant content into {% data variables.copilot.copilot_spaces_short %} that ground {% data variables.product.prodname_copilot_short %}’s responses in the right context for a specific task.'
|
intro: 'Organize and centralize relevant content into {% data variables.copilot.copilot_spaces_short %} that ground {% data variables.product.prodname_copilot_short %}’s responses in the right context for a specific task.'
|
||||||
versions:
|
versions:
|
||||||
@@ -15,4 +15,3 @@ redirect_from:
|
|||||||
- /copilot/how-tos/context/use-copilot-spaces
|
- /copilot/how-tos/context/use-copilot-spaces
|
||||||
contentType: how-tos
|
contentType: how-tos
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Extending Copilot Chat with the Model Context Protocol (MCP)
|
title: Extending GitHub Copilot Chat with the Model Context Protocol (MCP)
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
shortTitle: Extend Copilot Chat with MCP
|
shortTitle: Extend Copilot Chat with MCP
|
||||||
intro: 'Learn how to use the Model Context Protocol (MCP) to extend {% data variables.copilot.copilot_chat_short %}.'
|
intro: 'Learn how to use the Model Context Protocol (MCP) to extend {% data variables.copilot.copilot_chat_short %}.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Changing the AI model for Copilot Chat
|
title: Changing the AI model for GitHub Copilot Chat
|
||||||
shortTitle: Change the chat model
|
shortTitle: Change the chat model
|
||||||
intro: 'Learn how to change the default LLM for {% data variables.copilot.copilot_chat_short %} to a different model.'
|
intro: 'Learn how to change the default LLM for {% data variables.copilot.copilot_chat_short %} to a different model.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Changing the AI model for Copilot code completion
|
title: Changing the AI model for GitHub Copilot code completion
|
||||||
shortTitle: Change the completion model
|
shortTitle: Change the completion model
|
||||||
intro: 'Learn how to change the default LLM for {% data variables.product.prodname_copilot_short %} code completion to a different model.'
|
intro: 'Learn how to change the default LLM for {% data variables.product.prodname_copilot_short %} code completion to a different model.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Configuring access to AI models in Copilot
|
title: Configuring access to AI models in GitHub Copilot
|
||||||
shortTitle: Configure access to AI models
|
shortTitle: Configure access to AI models
|
||||||
intro: 'Learn how to configure access to AI models in {% data variables.product.prodname_copilot_short %}.'
|
intro: 'Learn how to configure access to AI models in {% data variables.product.prodname_copilot_short %}.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: AI models for Copilot
|
title: AI models for GitHub Copilot
|
||||||
shortTitle: Use AI models
|
shortTitle: Use AI models
|
||||||
intro: 'Learn how to use alternative large language models for {% data variables.product.prodname_copilot %}.'
|
intro: 'Learn how to use alternative large language models for {% data variables.product.prodname_copilot %}.'
|
||||||
versions:
|
versions:
|
||||||
@@ -16,4 +16,3 @@ redirect_from:
|
|||||||
- /copilot/how-tos/ai-models
|
- /copilot/how-tos/ai-models
|
||||||
contentType: how-tos
|
contentType: how-tos
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Getting started with prompts for Copilot Chat
|
title: Getting started with prompts for GitHub Copilot Chat
|
||||||
intro: 'Get an overview of ways to use {% data variables.copilot.copilot_chat_short %}.'
|
intro: 'Get an overview of ways to use {% data variables.copilot.copilot_chat_short %}.'
|
||||||
topics:
|
topics:
|
||||||
- Copilot
|
- Copilot
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot Chat
|
title: GitHub Copilot Chat
|
||||||
shortTitle: Use Chat
|
shortTitle: Use Chat
|
||||||
intro: 'Learn how to use {% data variables.copilot.copilot_chat_short %} across different environments.'
|
intro: 'Learn how to use {% data variables.copilot.copilot_chat_short %} across different environments.'
|
||||||
versions:
|
versions:
|
||||||
@@ -18,4 +18,3 @@ children:
|
|||||||
- /use-chat-in-mobile
|
- /use-chat-in-mobile
|
||||||
contentType: how-tos
|
contentType: how-tos
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Using Copilot to work on an issue
|
title: Using GitHub Copilot to work on an issue
|
||||||
shortTitle: Assign Copilot to an issue
|
shortTitle: Assign Copilot to an issue
|
||||||
intro: 'Learn how to assign issues to {% data variables.product.prodname_copilot %}, monitor progress as {% data variables.product.prodname_copilot_short %} works on the issue, and then use pull request review comments to prompt {% data variables.product.prodname_copilot_short %} to iterate on its work.'
|
intro: 'Learn how to assign issues to {% data variables.product.prodname_copilot %}, monitor progress as {% data variables.product.prodname_copilot_short %} works on the issue, and then use pull request review comments to prompt {% data variables.product.prodname_copilot_short %} to iterate on its work.'
|
||||||
product: '{% data reusables.gated-features.copilot-coding-agent %}<br><a href="https://github.com/features/copilot/plans?ref_cta=Copilot+plans+signup&ref_loc=using+copilot+to+work+on+an+issue&ref_page=docs" target="_blank" class="btn btn-primary mt-3 mr-3 no-underline"><span>Sign up for {% data variables.product.prodname_copilot_short %}</span> {% octicon "link-external" height:16 %}</a>'
|
product: '{% data reusables.gated-features.copilot-coding-agent %}<br><a href="https://github.com/features/copilot/plans?ref_cta=Copilot+plans+signup&ref_loc=using+copilot+to+work+on+an+issue&ref_page=docs" target="_blank" class="btn btn-primary mt-3 mr-3 no-underline"><span>Sign up for {% data variables.product.prodname_copilot_short %}</span> {% octicon "link-external" height:16 %}</a>'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Asking Copilot to create a pull request
|
title: Asking GitHub Copilot to create a pull request
|
||||||
shortTitle: Create a PR
|
shortTitle: Create a PR
|
||||||
intro: 'You can ask {% data variables.product.prodname_copilot_short %} to create a pull request from the Agents page, {% data variables.copilot.copilot_chat_short %}, or agentic coding tools and IDEs with Model Context Protocol (MCP) support.'
|
intro: 'You can ask {% data variables.product.prodname_copilot_short %} to create a pull request from the Agents page, {% data variables.copilot.copilot_chat_short %}, or agentic coding tools and IDEs with Model Context Protocol (MCP) support.'
|
||||||
product: '{% data reusables.gated-features.copilot-coding-agent %}<br><a href="https://github.com/features/copilot/plans?ref_cta=Copilot+plans+signup&ref_loc=asking+copilot+to+create+a+pull+request&ref_page=docs" target="_blank" class="btn btn-primary mt-3 mr-3 no-underline"><span>Sign up for {% data variables.product.prodname_copilot_short %}</span> {% octicon "link-external" height:16 %}</a>'
|
product: '{% data reusables.gated-features.copilot-coding-agent %}<br><a href="https://github.com/features/copilot/plans?ref_cta=Copilot+plans+signup&ref_loc=asking+copilot+to+create+a+pull+request&ref_page=docs" target="_blank" class="btn btn-primary mt-3 mr-3 no-underline"><span>Sign up for {% data variables.product.prodname_copilot_short %}</span> {% octicon "link-external" height:16 %}</a>'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Customizing the development environment for Copilot coding agent
|
title: Customizing the development environment for GitHub Copilot coding agent
|
||||||
shortTitle: Customize the agent environment
|
shortTitle: Customize the agent environment
|
||||||
intro: 'Learn how to customize {% data variables.product.prodname_copilot %}''s development environment with additional tools.'
|
intro: 'Learn how to customize {% data variables.product.prodname_copilot %}''s development environment with additional tools.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Customizing or disabling the firewall for Copilot coding agent
|
title: Customizing or disabling the firewall for GitHub Copilot coding agent
|
||||||
shortTitle: Customize the agent firewall
|
shortTitle: Customize the agent firewall
|
||||||
intro: 'Learn how to control the domains and URLs that {% data variables.copilot.copilot_coding_agent %} can access.'
|
intro: 'Learn how to control the domains and URLs that {% data variables.copilot.copilot_coding_agent %} can access.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Extending Copilot coding agent with the Model Context Protocol (MCP)
|
title: Extending GitHub Copilot coding agent with the Model Context Protocol (MCP)
|
||||||
shortTitle: Extend coding agent with MCP
|
shortTitle: Extend coding agent with MCP
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Learn how to use the Model Context Protocol (MCP) to extend the capabilities of {% data variables.copilot.copilot_coding_agent %}.'
|
intro: 'Learn how to use the Model Context Protocol (MCP) to extend the capabilities of {% data variables.copilot.copilot_coding_agent %}.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: '{% data variables.copilot.copilot_coding_agent %}'
|
title: GitHub Copilot coding agent
|
||||||
shortTitle: '{% data variables.copilot.copilot_coding_agent_short_cap_c %}'
|
shortTitle: '{% data variables.copilot.copilot_coding_agent_short_cap_c %}'
|
||||||
intro: 'Find out how {% data variables.product.prodname_copilot_short %} can work on {% data variables.product.github %} issues and raise pull requests for you to review.'
|
intro: 'Find out how {% data variables.product.prodname_copilot_short %} can work on {% data variables.product.github %} issues and raise pull requests for you to review.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Reviewing a pull request created by Copilot
|
title: Reviewing a pull request created by GitHub Copilot
|
||||||
shortTitle: Review Copilot PRs
|
shortTitle: Review Copilot PRs
|
||||||
intro: 'After {% data variables.product.prodname_copilot_short %} creates a pull request, you should review it. You can mention `@copilot` to ask {% data variables.product.prodname_copilot_short %} to make changes, or push changes yourself.'
|
intro: 'After {% data variables.product.prodname_copilot_short %} creates a pull request, you should review it. You can mention `@copilot` to ask {% data variables.product.prodname_copilot_short %} to make changes, or push changes yourself.'
|
||||||
product: '{% data reusables.gated-features.copilot-coding-agent %}<br><a href="https://github.com/features/copilot/plans?ref_cta=Copilot+plans+signup&ref_loc=reviewing+a+pull+request+created+by+copilot&ref_page=docs" target="_blank" class="btn btn-primary mt-3 mr-3 no-underline"><span>Sign up for {% data variables.product.prodname_copilot_short %}</span> {% octicon "link-external" height:16 %}</a>'
|
product: '{% data reusables.gated-features.copilot-coding-agent %}<br><a href="https://github.com/features/copilot/plans?ref_cta=Copilot+plans+signup&ref_loc=reviewing+a+pull+request+created+by+copilot&ref_page=docs" target="_blank" class="btn btn-primary mt-3 mr-3 no-underline"><span>Sign up for {% data variables.product.prodname_copilot_short %}</span> {% octicon "link-external" height:16 %}</a>'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Tracking Copilot's sessions
|
title: Tracking GitHub Copilot's sessions
|
||||||
shortTitle: Track Copilot sessions
|
shortTitle: Track Copilot sessions
|
||||||
intro: 'You can use the Agents page, {% data variables.product.prodname_vscode %} and session logs to track {% data variables.product.prodname_copilot_short %}''s progress and understand its approach.'
|
intro: 'You can use the Agents page, {% data variables.product.prodname_vscode %} and session logs to track {% data variables.product.prodname_copilot_short %}''s progress and understand its approach.'
|
||||||
product: '{% data reusables.gated-features.copilot-coding-agent %}<br><a href="https://github.com/features/copilot/plans?ref_cta=Copilot+plans+signup&ref_loc=using+the+copilot+coding+agent+logs&ref_page=docs" target="_blank" class="btn btn-primary mt-3 mr-3 no-underline"><span>Sign up for {% data variables.product.prodname_copilot_short %}</span> {% octicon "link-external" height:16 %}</a>'
|
product: '{% data reusables.gated-features.copilot-coding-agent %}<br><a href="https://github.com/features/copilot/plans?ref_cta=Copilot+plans+signup&ref_loc=using+the+copilot+coding+agent+logs&ref_page=docs" target="_blank" class="btn btn-primary mt-3 mr-3 no-underline"><span>Sign up for {% data variables.product.prodname_copilot_short %}</span> {% octicon "link-external" height:16 %}</a>'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Troubleshooting Copilot coding agent
|
title: Troubleshooting GitHub Copilot coding agent
|
||||||
shortTitle: Troubleshoot coding agent
|
shortTitle: Troubleshoot coding agent
|
||||||
intro: 'Learn how to resolve problems that may occur when you assign tasks to {% data variables.product.prodname_copilot_short %}.'
|
intro: 'Learn how to resolve problems that may occur when you assign tasks to {% data variables.product.prodname_copilot_short %}.'
|
||||||
product: '{% data reusables.gated-features.copilot-coding-agent %}<br><a href="https://github.com/features/copilot/plans?ref_cta=Copilot+plans+signup&ref_loc=troubleshooting+copilot+coding+agent&ref_page=docs" target="_blank" class="btn btn-primary mt-3 mr-3 no-underline"><span>Sign up for {% data variables.product.prodname_copilot_short %}</span> {% octicon "link-external" height:16 %}</a>'
|
product: '{% data reusables.gated-features.copilot-coding-agent %}<br><a href="https://github.com/features/copilot/plans?ref_cta=Copilot+plans+signup&ref_loc=troubleshooting+copilot+coding+agent&ref_page=docs" target="_blank" class="btn btn-primary mt-3 mr-3 no-underline"><span>Sign up for {% data variables.product.prodname_copilot_short %}</span> {% octicon "link-external" height:16 %}</a>'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Configuring automatic code review by Copilot
|
title: Configuring automatic code review by GitHub Copilot
|
||||||
shortTitle: Configure automatic review
|
shortTitle: Configure automatic review
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Learn how to configure {% data variables.product.prodname_copilot_short %} to automatically review pull requests.'
|
intro: 'Learn how to configure {% data variables.product.prodname_copilot_short %} to automatically review pull requests.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Configuring your Copilot agent to communicate with the Copilot platform
|
title: Configuring your GitHub Copilot agent to communicate with the GitHub Copilot platform
|
||||||
intro: 'Learn how to interact with the {% data variables.product.prodname_copilot_short %} platform by sending and receiving server-sent events with your {% data variables.copilot.copilot_agent_short %}.'
|
intro: 'Learn how to interact with the {% data variables.product.prodname_copilot_short %} platform by sending and receiving server-sent events with your {% data variables.copilot.copilot_agent_short %}.'
|
||||||
versions:
|
versions:
|
||||||
feature: copilot-extensions
|
feature: copilot-extensions
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Configuring your Copilot agent to communicate with GitHub
|
title: Configuring your GitHub Copilot agent to communicate with GitHub
|
||||||
intro: 'Learn how to verify payloads and get resources from {% data variables.product.github %} with your {% data variables.copilot.copilot_agent_short %}.'
|
intro: 'Learn how to verify payloads and get resources from {% data variables.product.github %} with your {% data variables.copilot.copilot_agent_short %}.'
|
||||||
versions:
|
versions:
|
||||||
feature: copilot-extensions
|
feature: copilot-extensions
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Building a Copilot agent for your Copilot Extension
|
title: Building a GitHub Copilot agent for your GitHub Copilot Extension
|
||||||
shortTitle: Build a Copilot agent
|
shortTitle: Build a Copilot agent
|
||||||
intro: 'Learn how to build a custom {% data variables.copilot.copilot_agent_short %} that determines the functionality of your {% data variables.copilot.copilot_extension_short %}.'
|
intro: 'Learn how to build a custom {% data variables.copilot.copilot_agent_short %} that determines the functionality of your {% data variables.copilot.copilot_extension_short %}.'
|
||||||
versions:
|
versions:
|
||||||
@@ -17,4 +17,3 @@ redirect_from:
|
|||||||
- /copilot/how-tos/build-copilot-extensions/build-a-copilot-agent
|
- /copilot/how-tos/build-copilot-extensions/build-a-copilot-agent
|
||||||
contentType: how-tos
|
contentType: how-tos
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Using Copilot's LLM for your agent
|
title: Using GitHub Copilot's LLM for your agent
|
||||||
intro: 'Learn how to use {% data variables.product.prodname_copilot_short %}''s LLM for your agent.'
|
intro: 'Learn how to use {% data variables.product.prodname_copilot_short %}''s LLM for your agent.'
|
||||||
versions:
|
versions:
|
||||||
feature: copilot-extensions
|
feature: copilot-extensions
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Building Copilot skillsets
|
title: Building GitHub Copilot skillsets
|
||||||
intro: 'Learn the steps to build {% data variables.copilot.copilot_skillsets %} and integrate custom tools and functions into your Copilot environment.'
|
intro: 'Learn the steps to build {% data variables.copilot.copilot_skillsets %} and integrate custom tools and functions into your Copilot environment.'
|
||||||
versions:
|
versions:
|
||||||
feature: copilot-extensions
|
feature: copilot-extensions
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Building a Copilot skillset for your Copilot Extension
|
title: Building a GitHub Copilot skillset for your GitHub Copilot Extension
|
||||||
shortTitle: Build a Copilot skillset
|
shortTitle: Build a Copilot skillset
|
||||||
intro: 'Learn how to build a custom {% data variables.copilot.copilot_skillset_short %} to combine custom skills and extend the capabilities of {% data variables.product.prodname_copilot_short %}.'
|
intro: 'Learn how to build a custom {% data variables.copilot.copilot_skillset_short %} to combine custom skills and extend the capabilities of {% data variables.product.prodname_copilot_short %}.'
|
||||||
versions:
|
versions:
|
||||||
@@ -14,4 +14,3 @@ children:
|
|||||||
- /build-copilot-skillsets
|
- /build-copilot-skillsets
|
||||||
contentType: how-tos
|
contentType: how-tos
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Configuring your GitHub App for your Copilot extension
|
title: Configuring your GitHub App for your GitHub Copilot extension
|
||||||
intro: 'Learn how to configure your {% data variables.product.prodname_github_app %} so that it is associated with your {% data variables.copilot.copilot_extension_short %}.'
|
intro: 'Learn how to configure your {% data variables.product.prodname_github_app %} so that it is associated with your {% data variables.copilot.copilot_extension_short %}.'
|
||||||
defaultTool: agents
|
defaultTool: agents
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Creating a GitHub App for your Copilot Extension
|
title: Creating a GitHub App for your GitHub Copilot Extension
|
||||||
intro: 'Learn how to create a {% data variables.product.prodname_github_app %} for your {% data variables.copilot.copilot_extension_short %}.'
|
intro: 'Learn how to create a {% data variables.product.prodname_github_app %} for your {% data variables.copilot.copilot_extension_short %}.'
|
||||||
versions:
|
versions:
|
||||||
feature: copilot-extensions
|
feature: copilot-extensions
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Configuring your server to host your Copilot extension
|
title: Configuring your server to host your GitHub Copilot extension
|
||||||
intro: 'Learn how to make your {% data variables.product.prodname_copilot_short %} extension accessible to the internet.'
|
intro: 'Learn how to make your {% data variables.product.prodname_copilot_short %} extension accessible to the internet.'
|
||||||
versions:
|
versions:
|
||||||
feature: copilot-extensions
|
feature: copilot-extensions
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Creating a Copilot Extension
|
title: Creating a GitHub Copilot Extension
|
||||||
shortTitle: Create a Copilot Extension
|
shortTitle: Create a Copilot Extension
|
||||||
intro: 'Learn how to integrate your {% data variables.copilot.copilot_agent_short %} with a {% data variables.product.prodname_github_app %} to create your {% data variables.copilot.copilot_extension_short %}.'
|
intro: 'Learn how to integrate your {% data variables.copilot.copilot_agent_short %} with a {% data variables.product.prodname_github_app %} to create your {% data variables.copilot.copilot_extension_short %}.'
|
||||||
versions:
|
versions:
|
||||||
@@ -16,4 +16,3 @@ redirect_from:
|
|||||||
- /copilot/how-tos/build-copilot-extensions/create-a-copilot-extension
|
- /copilot/how-tos/build-copilot-extensions/create-a-copilot-extension
|
||||||
contentType: how-tos
|
contentType: how-tos
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot Extensions
|
title: GitHub Copilot Extensions
|
||||||
shortTitle: Use Copilot Extensions
|
shortTitle: Use Copilot Extensions
|
||||||
intro: 'Learn how to integrate external tools with {% data variables.product.prodname_copilot_short %}.'
|
intro: 'Learn how to integrate external tools with {% data variables.product.prodname_copilot_short %}.'
|
||||||
versions:
|
versions:
|
||||||
@@ -19,4 +19,3 @@ redirect_from:
|
|||||||
- /copilot/how-tos/build-copilot-extensions
|
- /copilot/how-tos/build-copilot-extensions
|
||||||
contentType: how-tos
|
contentType: how-tos
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Managing the availability of your Copilot Extension
|
title: Managing the availability of your GitHub Copilot Extension
|
||||||
intro: 'After you build your {% data variables.copilot.copilot_extension_short %}, you can change it''s visibility or publish it on the {% data variables.product.prodname_marketplace %}.'
|
intro: 'After you build your {% data variables.copilot.copilot_extension_short %}, you can change it''s visibility or publish it on the {% data variables.product.prodname_marketplace %}.'
|
||||||
versions:
|
versions:
|
||||||
feature: copilot-extensions
|
feature: copilot-extensions
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Setting up Copilot Extensions
|
title: Setting up GitHub Copilot Extensions
|
||||||
intro: 'Follow these steps to start building {% data variables.copilot.copilot_extensions_short %}.'
|
intro: 'Follow these steps to start building {% data variables.copilot.copilot_extensions_short %}.'
|
||||||
defaultTool: agents
|
defaultTool: agents
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Use Copilot for common tasks
|
title: Use GitHub Copilot for common tasks
|
||||||
shortTitle: Use Copilot for common tasks
|
shortTitle: Use Copilot for common tasks
|
||||||
intro: '{% data variables.product.prodname_copilot %} enhances and integrates with many different {% data variables.product.github %} features.'
|
intro: '{% data variables.product.prodname_copilot %} enhances and integrates with many different {% data variables.product.github %} features.'
|
||||||
versions:
|
versions:
|
||||||
@@ -14,4 +14,3 @@ redirect_from:
|
|||||||
- /copilot/how-tos/github-flow
|
- /copilot/how-tos/github-flow
|
||||||
contentType: how-tos
|
contentType: how-tos
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: AI models for Copilot
|
title: AI models for GitHub Copilot
|
||||||
shortTitle: AI models
|
shortTitle: AI models
|
||||||
intro: 'Find information about large language models you can use to power {% data variables.product.prodname_copilot %}.'
|
intro: 'Find information about large language models you can use to power {% data variables.product.prodname_copilot %}.'
|
||||||
versions:
|
versions:
|
||||||
@@ -12,4 +12,3 @@ children:
|
|||||||
- /model-hosting
|
- /model-hosting
|
||||||
contentType: reference
|
contentType: reference
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Hosting of models for Copilot Chat
|
title: Hosting of models for GitHub Copilot Chat
|
||||||
shortTitle: Model hosting
|
shortTitle: Model hosting
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Learn how different AI models are hosted for {% data variables.copilot.copilot_chat_short %}.'
|
intro: 'Learn how different AI models are hosted for {% data variables.copilot.copilot_chat_short %}.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Supported AI models in Copilot
|
title: Supported AI models in GitHub Copilot
|
||||||
shortTitle: Supported models
|
shortTitle: Supported models
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Learn about the supported AI models in {% data variables.product.prodname_copilot %}.'
|
intro: 'Learn about the supported AI models in {% data variables.product.prodname_copilot %}.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot billing through Azure
|
title: GitHub Copilot billing through Azure
|
||||||
shortTitle: Azure billing
|
shortTitle: Azure billing
|
||||||
intro: 'Learn how metered billing for {% data variables.product.prodname_copilot %} works when you are connected to an Azure subscription, including billing cycles, invoicing, and usage tracking.'
|
intro: 'Learn how metered billing for {% data variables.product.prodname_copilot %} works when you are connected to an Azure subscription, including billing cycles, invoicing, and usage tracking.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot billing cycle
|
title: GitHub Copilot billing cycle
|
||||||
intro: 'Learn about the billing cycle for {% data variables.product.prodname_copilot %} in organizations and enterprises.'
|
intro: 'Learn about the billing cycle for {% data variables.product.prodname_copilot %} in organizations and enterprises.'
|
||||||
shortTitle: Billing cycle
|
shortTitle: Billing cycle
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot billing
|
title: GitHub Copilot billing
|
||||||
shortTitle: Copilot billing
|
shortTitle: Copilot billing
|
||||||
intro: 'Find billing information about {% data variables.product.prodname_copilot %}.'
|
intro: 'Find billing information about {% data variables.product.prodname_copilot %}.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Making changes to your Copilot license
|
title: Making changes to your GitHub Copilot license
|
||||||
shortTitle: License changes
|
shortTitle: License changes
|
||||||
intro: 'Learn how changes to {% data variables.product.prodname_copilot %} licenses affect billing and user access for organizations, enterprises, and personal accounts.'
|
intro: 'Learn how changes to {% data variables.product.prodname_copilot %} licenses affect billing and user access for organizations, enterprises, and personal accounts.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot seat assignment
|
title: GitHub Copilot seat assignment
|
||||||
shortTitle: Seat assignment
|
shortTitle: Seat assignment
|
||||||
intro: 'Learn how seat assignment for {% data variables.product.prodname_copilot %} works in organizations and enterprises, including billing, user eligibility, and assignment management.'
|
intro: 'Learn how seat assignment for {% data variables.product.prodname_copilot %} works in organizations and enterprises, including billing, user eligibility, and assignment management.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Copilot Extensions glossary
|
title: GitHub Copilot Extensions glossary
|
||||||
shortTitle: Extensions glossary
|
shortTitle: Extensions glossary
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Understand the terminology used in {% data variables.copilot.copilot_extensions_short %}.'
|
intro: 'Understand the terminology used in {% data variables.copilot.copilot_extensions_short %}.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Feature availability when Copilot policies conflict in organizations
|
title: Feature availability when GitHub Copilot policies conflict in organizations
|
||||||
shortTitle: Policy conflicts
|
shortTitle: Policy conflicts
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Learn how delegating {% data variables.product.prodname_copilot_short %} policy decisions to organizations affects users granted a license by organizations with different policies.'
|
intro: 'Learn how delegating {% data variables.product.prodname_copilot_short %} policy decisions to organizations affects users granted a license by organizations with different policies.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Responsible use of Copilot coding agent on GitHub.com
|
title: Responsible use of GitHub Copilot coding agent on GitHub.com
|
||||||
shortTitle: Copilot coding agent
|
shortTitle: Copilot coding agent
|
||||||
intro: 'Learn how to use {% data variables.copilot.copilot_coding_agent %} on {% data variables.product.prodname_dotcom_the_website %} responsibly by understanding its purposes, capabilities, and limitations.'
|
intro: 'Learn how to use {% data variables.copilot.copilot_coding_agent %} on {% data variables.product.prodname_dotcom_the_website %} responsibly by understanding its purposes, capabilities, and limitations.'
|
||||||
versions:
|
versions:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Best practices for using Copilot to work on tasks
|
title: Best practices for using GitHub Copilot to work on tasks
|
||||||
shortTitle: Get the best results
|
shortTitle: Get the best results
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Learn how to get the best results from {% data variables.copilot.copilot_coding_agent %}.'
|
intro: 'Learn how to get the best results from {% data variables.copilot.copilot_coding_agent %}.'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: '{% data variables.copilot.copilot_coding_agent %}'
|
title: GitHub Copilot coding agent
|
||||||
shortTitle: Coding agent
|
shortTitle: Coding agent
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
intro: 'Find out how to get great results from {% data variables.copilot.copilot_coding_agent %}.'
|
intro: 'Find out how to get great results from {% data variables.copilot.copilot_coding_agent %}.'
|
||||||
@@ -12,4 +12,3 @@ children:
|
|||||||
- /pilot-coding-agent
|
- /pilot-coding-agent
|
||||||
contentType: tutorials
|
contentType: tutorials
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: 'Piloting {% data variables.copilot.copilot_coding_agent %} in your organization'
|
title: 'Piloting GitHub Copilot coding agent in your organization'
|
||||||
shortTitle: 'Pilot {% data variables.copilot.copilot_coding_agent_short %}'
|
shortTitle: 'Pilot {% data variables.copilot.copilot_coding_agent_short %}'
|
||||||
intro: 'Follow best practices to enable {% data variables.copilot.copilot_coding_agent %} in your organization.'
|
intro: 'Follow best practices to enable {% data variables.copilot.copilot_coding_agent %} in your organization.'
|
||||||
allowTitleToDifferFromFilename: true
|
allowTitleToDifferFromFilename: true
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user