Merge branch 'main' into remove-systemctl-note
This commit is contained in:
9
.github/workflows/add-review-template.yml
vendored
9
.github/workflows/add-review-template.yml
vendored
@@ -16,8 +16,11 @@ jobs:
|
||||
if: github.event.label.name == 'add-review-template' && github.repository == 'github/docs-internal'
|
||||
|
||||
steps:
|
||||
- name: check out repo content
|
||||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
||||
- name: Download the template file
|
||||
uses: Bhacaz/checkout-files@c8f01756bfd894ba746d5bf48205e19000b0742b
|
||||
with:
|
||||
files: .github/review-template.md
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
# Jump through some hoops to work with a multi-line file
|
||||
- name: Store review template in variable
|
||||
@@ -31,6 +34,6 @@ jobs:
|
||||
run: |
|
||||
gh pr comment $PR --body "$TEMPLATE"
|
||||
env:
|
||||
GITHUB_TOKEN: ${{secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES}}
|
||||
GITHUB_TOKEN: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}
|
||||
PR: ${{ github.event.pull_request.html_url }}
|
||||
TEMPLATE: ${{ env.TEMPLATE }}
|
||||
|
||||
@@ -75,21 +75,23 @@ jobs:
|
||||
|
||||
let markdownTable = '| **Source** | **Staging** | **Production** | **What Changed** |\n|:----------- |:----------- |:----------- |:----------- |\n'
|
||||
|
||||
files.filter(({ filename }) => filename.startsWith('content/') && !filename.endsWith('/index.md'))
|
||||
.forEach(file => {
|
||||
const fileName = file.filename.split('content/')[1]
|
||||
const sourceUrl = file.blob_url
|
||||
const fileUrl = fileName.substring(0, fileName.split('.')[0])
|
||||
const stagingLink = `https://${stagingPrefix}.herokuapp.com/${fileUrl}`
|
||||
let markdownLine = ''
|
||||
|
||||
if (file.status == 'modified') {
|
||||
markdownLine = '| [content/' + fileName + '](' + sourceUrl + ') | [Modified](' + stagingLink + ') | [Original](https://docs.github.com/' + fileUrl + ') | | |\n'
|
||||
} else if (file.status == 'added') {
|
||||
markdownLine = '| New file: [content/' + fileName + '](' + sourceUrl + ') | [Modified](' + stagingLink + ') | | | |\n'
|
||||
}
|
||||
markdownTable += markdownLine
|
||||
})
|
||||
const pathPrefix = 'content/'
|
||||
const articleFiles = files.filter(({ filename }) => filename.startsWith(pathPrefix) && !filename.endsWith('/index.md'))
|
||||
for (const file of articleFiles) {
|
||||
const sourceUrl = file.blob_url
|
||||
const fileName = file.filename.slice(pathPrefix.length)
|
||||
const fileUrl = fileName.slice(0, fileName.lastIndexOf('.'))
|
||||
const stagingLink = `https://${stagingPrefix}.herokuapp.com/${fileUrl}`
|
||||
const productionLink = `https://docs.github.com/${fileUrl}`
|
||||
let markdownLine = ''
|
||||
|
||||
if (file.status === 'modified') {
|
||||
markdownLine = `| [content/${fileName}](${sourceUrl}) | [Modified](${stagingLink}) | [Original](${productionLink}) | |\n`
|
||||
} else if (file.status === 'added') {
|
||||
markdownLine = `| New file: [content/${fileName}](${sourceUrl}) | [Modified](${stagingLink}) | | |\n`
|
||||
}
|
||||
markdownTable += markdownLine
|
||||
}
|
||||
|
||||
function getStagingPrefix (prefix, prNumber, branch) {
|
||||
// Added a - in front of prNumber
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 28 KiB |
@@ -45,7 +45,7 @@ Jobs that run on Windows and macOS runners that {% data variables.product.prodna
|
||||
|
||||
The storage used by a repository is the total storage used by {% data variables.product.prodname_actions %} artifacts and {% data variables.product.prodname_registry %}. Your storage cost is the total usage for all repositories owned by your account. For more information about pricing for {% data variables.product.prodname_registry %}, see "[About billing for {% data variables.product.prodname_registry %}](/billing/managing-billing-for-github-packages/about-billing-for-github-packages)."
|
||||
|
||||
If your account's usage surpasses these limits and you have set a spending limit above $0, you will pay $0.25 USD per GB of storage per month and per-minute usage depending on the operating system used by the {% data variables.product.prodname_dotcom %}-hosted runner. {% data variables.product.prodname_dotcom %} rounds the minutes each job uses up to the nearest minute.
|
||||
If your account's usage surpasses these limits and you have set a spending limit above $0 USD, you will pay $0.25 USD per GB of storage per month and per-minute usage depending on the operating system used by the {% data variables.product.prodname_dotcom %}-hosted runner. {% data variables.product.prodname_dotcom %} rounds the minutes each job uses up to the nearest minute.
|
||||
|
||||
{% note %}
|
||||
|
||||
@@ -55,7 +55,7 @@ The storage used by a repository is the total storage used by {% data variables.
|
||||
|
||||
### Per-minute rates
|
||||
|
||||
| Operating system | Per-minute rate |
|
||||
| Operating system | Per-minute rate (USD) |
|
||||
|------- | ---------|
|
||||
| Linux | $0.008 |
|
||||
| macOS | $0.08 |
|
||||
@@ -71,11 +71,11 @@ At the end of the month, {% data variables.product.prodname_dotcom %} calculates
|
||||
|
||||
### Sample minutes cost calculation
|
||||
|
||||
For example, if your organization uses {% data variables.product.prodname_team %} and allows unlimited spending, using 15,000 minutes could have a total storage and minute overage cost of $56, depending on the operating systems used to run jobs.
|
||||
For example, if your organization uses {% data variables.product.prodname_team %} and allows unlimited spending, using 15,000 minutes could have a total storage and minute overage cost of $56 USD, depending on the operating systems used to run jobs.
|
||||
|
||||
- 5,000 (3,000 Linux and 2,000 Windows) minutes = $56 ($24 + $32).
|
||||
- 3,000 Linux minutes at $0.008 per minute = $24.
|
||||
- 2,000 Windows minutes at $0.016 per minute = $32.
|
||||
- 5,000 (3,000 Linux and 2,000 Windows) minutes = $56 USD ($24 USD + $32 USD).
|
||||
- 3,000 Linux minutes at $0.008 USD per minute = $24 USD.
|
||||
- 2,000 Windows minutes at $0.016 USD per minute = $32 USD.
|
||||
|
||||
{% data variables.product.prodname_dotcom %} calculates your storage usage for each month based on hourly usage during that month.
|
||||
|
||||
|
||||
@@ -46,9 +46,9 @@ All data transferred out, when triggered by {% data variables.product.prodname_a
|
||||
|
||||
Storage usage is shared with build artifacts produced by {% data variables.product.prodname_actions %} for repositories owned by your account. For more information, see "[About billing for {% data variables.product.prodname_actions %}](/billing/managing-billing-for-github-actions/about-billing-for-github-actions)."
|
||||
|
||||
{% data variables.product.prodname_dotcom %} charges usage to the account that owns the repository where the package is published. If your account's usage surpasses these limits and you have set a spending limit above $0, you will pay $0.25 USD per GB of storage and $0.50 USD per GB of data transfer.
|
||||
{% data variables.product.prodname_dotcom %} charges usage to the account that owns the repository where the package is published. If your account's usage surpasses these limits and you have set a spending limit above $0 USD, you will pay $0.25 USD per GB of storage and $0.50 USD per GB of data transfer.
|
||||
|
||||
For example, if your organization uses {% data variables.product.prodname_team %}, allows unlimited spending, uses 150GB of storage, and has 50GB of data transfer out during a month, the organization would have overages of 148GB for storage and 40GB for data transfer for that month. The storage overage would cost $0.25 per GB or $37. The overage for data transfer would cost $0.50 per GB or $20.
|
||||
For example, if your organization uses {% data variables.product.prodname_team %}, allows unlimited spending, uses 150GB of storage, and has 50GB of data transfer out during a month, the organization would have overages of 148GB for storage and 40GB for data transfer for that month. The storage overage would cost $0.25 USD per GB or $37 USD. The overage for data transfer would cost $0.50 USD per GB or $20 USD.
|
||||
|
||||
At the end of the month, {% data variables.product.prodname_dotcom %} rounds your data transfer to the nearest GB.
|
||||
|
||||
|
||||
@@ -54,7 +54,7 @@ These queries must belong to a published {% data variables.product.prodname_code
|
||||
|
||||
For more information, see "[About {% data variables.product.prodname_codeql %} packs](https://codeql.github.com/docs/codeql-cli/about-codeql-packs/)" and "[About {% data variables.product.prodname_ql %} packs](https://codeql.github.com/docs/codeql-cli/about-ql-packs/)" in the {% data variables.product.prodname_codeql %} documentation.
|
||||
|
||||
{% data reusables.code-scanning.beta-codeql-packs-actions %}
|
||||
{% data reusables.code-scanning.beta-codeql-packs-cli %}
|
||||
|
||||
{%- else %}
|
||||
The queries you want to run must belong to a QL pack in a repository. Queries must only depend on the standard libraries (that is, the libraries referenced by an `import LANGUAGE` statement in your query), or libraries in the same QL pack as the query. For more information, see "[About {% data variables.product.prodname_ql %} packs](https://codeql.github.com/docs/codeql-cli/about-ql-packs/)."
|
||||
|
||||
@@ -303,7 +303,7 @@ Your specified category will not overwrite the details of the `runAutomationDeta
|
||||
{% if codeql-packs %}
|
||||
### Using {% data variables.product.prodname_codeql %} query packs
|
||||
|
||||
{% data reusables.code-scanning.beta-codeql-packs-actions %}
|
||||
{% data reusables.code-scanning.beta-codeql-packs-cli %}
|
||||
|
||||
To add one or more {% data variables.product.prodname_codeql %} query packs (beta), add a `with: packs:` entry within the `uses: github/codeql-action/init@v1` section of the workflow. Within `packs` you specify one or more packages to use and, optionally, which version to download. Where you don't specify a version, the latest version is downloaded. If you want to use packages that are not publicly available, you need to set the `GITHUB_TOKEN` environment variable to a secret that has access to the packages. For more information, see "[Authentication in a workflow](/actions/reference/authentication-in-a-workflow)" and "[Encrypted secrets](/actions/reference/encrypted-secrets)."
|
||||
|
||||
@@ -389,7 +389,7 @@ The settings in the configuration file are written in YAML format.
|
||||
{% if codeql-packs %}
|
||||
### Specifying {% data variables.product.prodname_codeql %} query packs
|
||||
|
||||
{% data reusables.code-scanning.beta-codeql-packs-actions %}
|
||||
{% data reusables.code-scanning.beta-codeql-packs-cli %}
|
||||
|
||||
You specify {% data variables.product.prodname_codeql %} query packs in an array. Note that the format is different from the format used by the workflow file.
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ shortTitle: Receive payment
|
||||
---
|
||||
After your {% data variables.product.prodname_marketplace %} listing for an app with a paid plan is created and approved, you'll provide payment details to {% data variables.product.product_name %} as part of the financial onboarding process.
|
||||
|
||||
Once your revenue reaches a minimum of $500 US dollars for the month, you'll receive an electronic payment from {% data variables.product.company_short %}. This will be the income from marketplace transactions minus the amount charged by {% data variables.product.company_short %} to cover their running costs.
|
||||
Once your revenue reaches a minimum of 500 US dollars for the month, you'll receive an electronic payment from {% data variables.product.company_short %}. This will be the income from marketplace transactions minus the amount charged by {% data variables.product.company_short %} to cover their running costs.
|
||||
|
||||
For transactions made before January 1, 2021, {% data variables.product.company_short %} retains 25% of transaction income. For transactions made after that date, only 5% is retained by {% data variables.product.company_short %}. This change will be reflected in payments received from the end of January 2021 onward.
|
||||
|
||||
|
||||
@@ -89,6 +89,7 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil
|
||||
4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will:
|
||||
- Force Git to process, but not check out, the entire history of every branch and tag
|
||||
- Remove the specified file, as well as any empty commits generated as a result
|
||||
- Remove some configurations, such as the remote URL, stored in the *.git/config* file. You may want to back up this file in advance for restoration later.
|
||||
- **Overwrite your existing tags**
|
||||
```shell
|
||||
$ git filter-repo --invert-paths --path PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA
|
||||
|
||||
@@ -19,6 +19,7 @@ When you commit and push a change to a file tracked with {% data variables.large
|
||||
For example:
|
||||
- If you push a 500 MB file to {% data variables.large_files.product_name_short %}, you'll use 500 MB of your allotted storage and none of your bandwidth. If you make a 1 byte change and push the file again, you'll use another 500 MB of storage and no bandwidth, bringing your total usage for these two pushes to 1 GB of storage and zero bandwidth.
|
||||
- If you download a 500 MB file that's tracked with LFS, you'll use 500 MB of the repository owner's allotted bandwidth. If a collaborator pushes a change to the file and you pull the new version to your local repository, you'll use another 500 MB of bandwidth, bringing the total usage for these two downloads to 1 GB of bandwidth.
|
||||
- If {% data variables.product.prodname_actions %} downloads a 500 MB file that is tracked with LFS, it will use 500 MB of the repository owner's allotted bandwidth.
|
||||
|
||||
{% ifversion fpt %}
|
||||
If {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) objects are included in source code archives for your repository, downloads of those archives will count towards bandwidth usage for the repository. For more information, see "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)."
|
||||
|
||||
@@ -48,7 +48,7 @@ The IRS allows non-resident and resident aliens to request an [Individual Taxpay
|
||||
|
||||
## 1099 forms
|
||||
|
||||
If you are a taxpayer in the United States and earn more than $600 USD in a tax year, {% data variables.product.prodname_dotcom %} will send you a [1099-NEC](https://www.irs.gov/forms-pubs/about-form-1099-nec) before January 31 of the next calendar year. We do not provide tax forms for international taxpayers.
|
||||
If you are a taxpayer in the United States and earn more than 600 US dollars in a tax year, {% data variables.product.prodname_dotcom %} will send you a [1099-NEC](https://www.irs.gov/forms-pubs/about-form-1099-nec) before January 31 of the next calendar year. We do not provide tax forms for international taxpayers.
|
||||
|
||||
## General tax information
|
||||
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
{% ifversion fpt %}
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** Use of {% data variables.product.prodname_codeql %} query packs with {% data variables.product.prodname_code_scanning %} is currently in beta and subject to change. To use this beta functionality, update your workflow to specify the beta release of the _codeql-action_.
|
||||
|
||||
```
|
||||
- uses: github/codeql-action/init@v1
|
||||
with:
|
||||
tools: https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.6.0-beta.1
|
||||
```
|
||||
|
||||
{% endnote %}
|
||||
|
||||
{% endif %}
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** The {% data variables.product.prodname_codeql %} package management functionality, including {% data variables.product.prodname_codeql %} packs, is currently in beta and subject to change. To use this beta functionality, install the beta release of the {% data variables.product.prodname_codeql_cli %} bundle from: https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.6.0-beta.1.
|
||||
**Note:** The {% data variables.product.prodname_codeql %} package management functionality, including {% data variables.product.prodname_codeql %} packs, is currently in beta and subject to change.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% note %}
|
||||
|
||||
**Note:** {% data variables.product.prodname_codespaces %} is free to use for all organizations on a {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %} plan until September 10, 2021. After this trial period ends, you must set a spending limit to continue to use Codespaces. For more information, see "[Managing spending limits for Codespaces](/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces)."
|
||||
**Note:** {% data variables.product.prodname_codespaces %} is free to use for all organizations on a {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %} plan until September 13, 2021. After this trial period ends, you must set a spending limit to continue to use Codespaces. For more information, see "[Managing spending limits for Codespaces](/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces)."
|
||||
|
||||
{% endnote %}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
1. View details of your bandwidth and storage usage under "{% data variables.large_files.product_name_short %} Data".
|
||||
1. View details of your bandwidth and storage usage under "{% data variables.large_files.product_name_short %} Data." To view your organization's LFS data usage by repository, click the arrows next to "Storage" and "Bandwidth."
|
||||
|
||||

|
||||
|
||||
@@ -1 +1 @@
|
||||
If you are a monthly-billed customer, your account will have a default spending limit of $0, which prevents additional usage of minutes or storage for private repositories beyond the amounts included with your account. If you pay your account by invoice, your account will have an unlimited default spending limit.
|
||||
If you are a monthly-billed customer, your account will have a default spending limit of 0 US dollars (USD), which prevents additional usage of minutes or storage for private repositories beyond the amounts included with your account. If you pay your account by invoice, your account will have an unlimited default spending limit.
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{% data reusables.github-actions.actions-spending-limit-brief %}
|
||||
|
||||
If you have an unlimited spending limit or a spending limit set higher than $0, you will be billed for any additional minutes or storage beyond the included amounts in your account, also called overages. {% data variables.product.prodname_dotcom %} charges usage to the account that owns the repository where a workflow is run. Any coupons on your account do not apply to {% data variables.product.prodname_actions %} overages.
|
||||
If you have an unlimited spending limit or a spending limit set higher than $0 USD, you will be billed for any additional minutes or storage beyond the included amounts in your account, also called overages. {% data variables.product.prodname_dotcom %} charges usage to the account that owns the repository where a workflow is run. Any coupons on your account do not apply to {% data variables.product.prodname_actions %} overages.
|
||||
|
||||
@@ -1 +1 @@
|
||||
If you are a monthly-billed customer, your account will have a default spending limit of $0, which prevents additional usage of storage or data transfer after you reach the included amounts. If you pay your account by invoice, your account will have an unlimited default spending limit.
|
||||
If you are a monthly-billed customer, your account will have a default spending limit of 0 US dollars (USD), which prevents additional usage of storage or data transfer after you reach the included amounts. If you pay your account by invoice, your account will have an unlimited default spending limit.
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{% data reusables.package_registry.packages-spending-limit-brief %}
|
||||
|
||||
If you have an unlimited spending limit or a spending limit set higher than $0, you will be billed for any additional storage or data transfer, also called overages, up to your spending limit. Any coupons on your account do not apply to {% data variables.product.prodname_registry %} overages.
|
||||
If you have an unlimited spending limit or a spending limit set higher than $0 USD, you will be billed for any additional storage or data transfer, also called overages, up to your spending limit. Any coupons on your account do not apply to {% data variables.product.prodname_registry %} overages.
|
||||
|
||||
@@ -66340,6 +66340,123 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"verb": "post",
|
||||
"requestPath": "/repos/{owner}/{repo}/merge-upstream",
|
||||
"serverUrl": "https://api.github.com",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "owner",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"descriptionHTML": ""
|
||||
},
|
||||
{
|
||||
"name": "repo",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"descriptionHTML": ""
|
||||
}
|
||||
],
|
||||
"x-codeSamples": [
|
||||
{
|
||||
"lang": "Shell",
|
||||
"source": "curl \\\n -X POST \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n https://api.github.com/repos/octocat/hello-world/merge-upstream \\\n -d '{\"branch\":\"branch\"}'",
|
||||
"html": "<pre><code class=\"hljs language-shell\">curl \\\n -X POST \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n https://api.github.com/repos/octocat/hello-world/merge-upstream \\\n -d '{\"branch\":\"branch\"}'</code></pre>"
|
||||
},
|
||||
{
|
||||
"lang": "JavaScript",
|
||||
"source": "await octokit.request('POST /repos/{owner}/{repo}/merge-upstream', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch'\n})",
|
||||
"html": "<pre><code class=\"hljs language-javascript\"><span class=\"hljs-keyword\">await</span> octokit.<span class=\"hljs-title hljs-function\">request</span>(<span class=\"hljs-string\">'POST /repos/{owner}/{repo}/merge-upstream'</span>, {\n <span class=\"hljs-attr\">owner</span>: <span class=\"hljs-string\">'octocat'</span>,\n <span class=\"hljs-attr\">repo</span>: <span class=\"hljs-string\">'hello-world'</span>,\n <span class=\"hljs-attr\">branch</span>: <span class=\"hljs-string\">'branch'</span>\n})\n</code></pre>"
|
||||
}
|
||||
],
|
||||
"summary": "Sync a fork branch with the upstream repository",
|
||||
"description": "Sync a branch of a forked repository to keep it up-to-date with the upstream repository.",
|
||||
"tags": [
|
||||
"repos"
|
||||
],
|
||||
"operationId": "repos/merge-upstream",
|
||||
"externalDocs": {
|
||||
"description": "API method documentation",
|
||||
"url": "https://docs.github.com/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository"
|
||||
},
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"branch": {
|
||||
"type": "string",
|
||||
"description": "<p><strong>Required</strong>. The name of the branch which should be updated to match upstream.</p>",
|
||||
"name": "branch",
|
||||
"in": "body",
|
||||
"rawType": "string",
|
||||
"rawDescription": "The name of the branch which should be updated to match upstream.",
|
||||
"childParamsGroups": []
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"branch"
|
||||
]
|
||||
},
|
||||
"example": {
|
||||
"branch": "main"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"x-github": {
|
||||
"githubCloudOnly": false,
|
||||
"enabledForGitHubApps": true,
|
||||
"previews": [],
|
||||
"category": "repos",
|
||||
"subcategory": "merging-upstream"
|
||||
},
|
||||
"slug": "sync-a-fork-branch-with-the-upstream-repository",
|
||||
"category": "repos",
|
||||
"categoryLabel": "Repos",
|
||||
"subcategory": "merging-upstream",
|
||||
"subcategoryLabel": "Merging upstream",
|
||||
"contentType": "application/json",
|
||||
"notes": [],
|
||||
"descriptionHTML": "<p>Sync a branch of a forked repository to keep it up-to-date with the upstream repository.</p>",
|
||||
"bodyParameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "<p><strong>Required</strong>. The name of the branch which should be updated to match upstream.</p>",
|
||||
"name": "branch",
|
||||
"in": "body",
|
||||
"rawType": "string",
|
||||
"rawDescription": "The name of the branch which should be updated to match upstream.",
|
||||
"childParamsGroups": []
|
||||
}
|
||||
],
|
||||
"responses": [
|
||||
{
|
||||
"httpStatusCode": "200",
|
||||
"httpStatusMessage": "OK",
|
||||
"description": "The branch has been successfully synced with the upstream repository",
|
||||
"payload": "<pre><code class=\"hljs language-json\"><span class=\"hljs-punctuation\">{</span>\n <span class=\"hljs-attr\">\"message\"</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">\"Successfully fetched and fast-forwarded from upstream defunkt:main\"</span><span class=\"hljs-punctuation\">,</span>\n <span class=\"hljs-attr\">\"merge_type\"</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">\"fast-forward\"</span><span class=\"hljs-punctuation\">,</span>\n <span class=\"hljs-attr\">\"base_branch\"</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">\"defunkt:main\"</span>\n<span class=\"hljs-punctuation\">}</span>\n</code></pre>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "409",
|
||||
"httpStatusMessage": "Conflict",
|
||||
"description": "The branch could not be synced because of a merge conflict"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "422",
|
||||
"httpStatusMessage": "Unprocessable Entity",
|
||||
"description": "The branch could not be synced for some other reason"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"verb": "post",
|
||||
"requestPath": "/repos/{owner}/{repo}/merges",
|
||||
|
||||
@@ -56012,6 +56012,123 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"verb": "post",
|
||||
"requestPath": "/repos/{owner}/{repo}/merge-upstream",
|
||||
"serverUrl": "https://{hostname}/api/v3",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "owner",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"descriptionHTML": ""
|
||||
},
|
||||
{
|
||||
"name": "repo",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"descriptionHTML": ""
|
||||
}
|
||||
],
|
||||
"x-codeSamples": [
|
||||
{
|
||||
"lang": "Shell",
|
||||
"source": "curl \\\n -X POST \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n https://{hostname}/api/v3/repos/octocat/hello-world/merge-upstream \\\n -d '{\"branch\":\"branch\"}'",
|
||||
"html": "<pre><code class=\"hljs language-shell\">curl \\\n -X POST \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n https://{hostname}/api/v3/repos/octocat/hello-world/merge-upstream \\\n -d '{\"branch\":\"branch\"}'</code></pre>"
|
||||
},
|
||||
{
|
||||
"lang": "JavaScript",
|
||||
"source": "await octokit.request('POST /repos/{owner}/{repo}/merge-upstream', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch'\n})",
|
||||
"html": "<pre><code class=\"hljs language-javascript\"><span class=\"hljs-keyword\">await</span> octokit.<span class=\"hljs-title hljs-function\">request</span>(<span class=\"hljs-string\">'POST /repos/{owner}/{repo}/merge-upstream'</span>, {\n <span class=\"hljs-attr\">owner</span>: <span class=\"hljs-string\">'octocat'</span>,\n <span class=\"hljs-attr\">repo</span>: <span class=\"hljs-string\">'hello-world'</span>,\n <span class=\"hljs-attr\">branch</span>: <span class=\"hljs-string\">'branch'</span>\n})\n</code></pre>"
|
||||
}
|
||||
],
|
||||
"summary": "Sync a fork branch with the upstream repository",
|
||||
"description": "Sync a branch of a forked repository to keep it up-to-date with the upstream repository.",
|
||||
"tags": [
|
||||
"repos"
|
||||
],
|
||||
"operationId": "repos/merge-upstream",
|
||||
"externalDocs": {
|
||||
"description": "API method documentation",
|
||||
"url": "https://docs.github.com/github-ae@latest/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository"
|
||||
},
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"branch": {
|
||||
"type": "string",
|
||||
"description": "<p><strong>Required</strong>. The name of the branch which should be updated to match upstream.</p>",
|
||||
"name": "branch",
|
||||
"in": "body",
|
||||
"rawType": "string",
|
||||
"rawDescription": "The name of the branch which should be updated to match upstream.",
|
||||
"childParamsGroups": []
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"branch"
|
||||
]
|
||||
},
|
||||
"example": {
|
||||
"branch": "main"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"x-github": {
|
||||
"githubCloudOnly": false,
|
||||
"enabledForGitHubApps": true,
|
||||
"previews": [],
|
||||
"category": "repos",
|
||||
"subcategory": "merging-upstream"
|
||||
},
|
||||
"slug": "sync-a-fork-branch-with-the-upstream-repository",
|
||||
"category": "repos",
|
||||
"categoryLabel": "Repos",
|
||||
"subcategory": "merging-upstream",
|
||||
"subcategoryLabel": "Merging upstream",
|
||||
"contentType": "application/json",
|
||||
"notes": [],
|
||||
"descriptionHTML": "<p>Sync a branch of a forked repository to keep it up-to-date with the upstream repository.</p>",
|
||||
"bodyParameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "<p><strong>Required</strong>. The name of the branch which should be updated to match upstream.</p>",
|
||||
"name": "branch",
|
||||
"in": "body",
|
||||
"rawType": "string",
|
||||
"rawDescription": "The name of the branch which should be updated to match upstream.",
|
||||
"childParamsGroups": []
|
||||
}
|
||||
],
|
||||
"responses": [
|
||||
{
|
||||
"httpStatusCode": "200",
|
||||
"httpStatusMessage": "OK",
|
||||
"description": "The branch has been successfully synced with the upstream repository",
|
||||
"payload": "<pre><code class=\"hljs language-json\"><span class=\"hljs-punctuation\">{</span>\n <span class=\"hljs-attr\">\"message\"</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">\"Successfully fetched and fast-forwarded from upstream defunkt:main\"</span><span class=\"hljs-punctuation\">,</span>\n <span class=\"hljs-attr\">\"merge_type\"</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">\"fast-forward\"</span><span class=\"hljs-punctuation\">,</span>\n <span class=\"hljs-attr\">\"base_branch\"</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">\"defunkt:main\"</span>\n<span class=\"hljs-punctuation\">}</span>\n</code></pre>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "409",
|
||||
"httpStatusMessage": "Conflict",
|
||||
"description": "The branch could not be synced because of a merge conflict"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "422",
|
||||
"httpStatusMessage": "Unprocessable Entity",
|
||||
"description": "The branch could not be synced for some other reason"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"verb": "post",
|
||||
"requestPath": "/repos/{owner}/{repo}/merges",
|
||||
|
||||
@@ -282440,6 +282440,113 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/repos/{owner}/{repo}/merge-upstream": {
|
||||
"post": {
|
||||
"summary": "Sync a fork branch with the upstream repository",
|
||||
"description": "Sync a branch of a forked repository to keep it up-to-date with the upstream repository.",
|
||||
"tags": [
|
||||
"repos"
|
||||
],
|
||||
"operationId": "repos/merge-upstream",
|
||||
"externalDocs": {
|
||||
"description": "API method documentation",
|
||||
"url": "https://docs.github.com/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository"
|
||||
},
|
||||
"parameters": [
|
||||
{
|
||||
"name": "owner",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "repo",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"branch": {
|
||||
"type": "string",
|
||||
"description": "The name of the branch which should be updated to match upstream."
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"branch"
|
||||
]
|
||||
},
|
||||
"example": {
|
||||
"branch": "main"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "The branch has been successfully synced with the upstream repository",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"title": "Merged upstream",
|
||||
"description": "Results of a successful merge upstream request",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"message": {
|
||||
"type": "string"
|
||||
},
|
||||
"merge_type": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"merge",
|
||||
"fast-forward",
|
||||
"none"
|
||||
]
|
||||
},
|
||||
"base_branch": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"examples": {
|
||||
"default": {
|
||||
"value": {
|
||||
"message": "Successfully fetched and fast-forwarded from upstream defunkt:main",
|
||||
"merge_type": "fast-forward",
|
||||
"base_branch": "defunkt:main"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"409": {
|
||||
"description": "The branch could not be synced because of a merge conflict"
|
||||
},
|
||||
"422": {
|
||||
"description": "The branch could not be synced for some other reason"
|
||||
}
|
||||
},
|
||||
"x-github": {
|
||||
"githubCloudOnly": false,
|
||||
"enabledForGitHubApps": true,
|
||||
"previews": [
|
||||
|
||||
],
|
||||
"category": "repos",
|
||||
"subcategory": "merging-upstream"
|
||||
}
|
||||
}
|
||||
},
|
||||
"/repos/{owner}/{repo}/merges": {
|
||||
"post": {
|
||||
"summary": "Merge a branch",
|
||||
|
||||
@@ -230544,6 +230544,113 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/repos/{owner}/{repo}/merge-upstream": {
|
||||
"post": {
|
||||
"summary": "Sync a fork branch with the upstream repository",
|
||||
"description": "Sync a branch of a forked repository to keep it up-to-date with the upstream repository.",
|
||||
"tags": [
|
||||
"repos"
|
||||
],
|
||||
"operationId": "repos/merge-upstream",
|
||||
"externalDocs": {
|
||||
"description": "API method documentation",
|
||||
"url": "https://docs.github.com/github-ae@latest/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository"
|
||||
},
|
||||
"parameters": [
|
||||
{
|
||||
"name": "owner",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "repo",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"branch": {
|
||||
"type": "string",
|
||||
"description": "The name of the branch which should be updated to match upstream."
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"branch"
|
||||
]
|
||||
},
|
||||
"example": {
|
||||
"branch": "main"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "The branch has been successfully synced with the upstream repository",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"title": "Merged upstream",
|
||||
"description": "Results of a successful merge upstream request",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"message": {
|
||||
"type": "string"
|
||||
},
|
||||
"merge_type": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"merge",
|
||||
"fast-forward",
|
||||
"none"
|
||||
]
|
||||
},
|
||||
"base_branch": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"examples": {
|
||||
"default": {
|
||||
"value": {
|
||||
"message": "Successfully fetched and fast-forwarded from upstream defunkt:main",
|
||||
"merge_type": "fast-forward",
|
||||
"base_branch": "defunkt:main"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"409": {
|
||||
"description": "The branch could not be synced because of a merge conflict"
|
||||
},
|
||||
"422": {
|
||||
"description": "The branch could not be synced for some other reason"
|
||||
}
|
||||
},
|
||||
"x-github": {
|
||||
"githubCloudOnly": false,
|
||||
"enabledForGitHubApps": true,
|
||||
"previews": [
|
||||
|
||||
],
|
||||
"category": "repos",
|
||||
"subcategory": "merging-upstream"
|
||||
}
|
||||
}
|
||||
},
|
||||
"/repos/{owner}/{repo}/merges": {
|
||||
"post": {
|
||||
"summary": "Merge a branch",
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0acd8907c97e940107c8e1f518203fefff0b32c977b40878de154afc056d93b5
|
||||
size 506737
|
||||
oid sha256:eb2d2e189192ecb4bbfe6602dd9dc7a97bd59eaf026e30956f2350fe48f036bd
|
||||
size 506901
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f9711c9f8dc693fbd14b1f56344698694d7c7a2cf7350fc72f249dd2705f3d78
|
||||
size 803274
|
||||
oid sha256:e83c962de7ff27adfa9dcbfb590559220b89e1ee1a474528f4638d278446bbff
|
||||
size 803234
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d87bc1fd0458173dd22caa1f7570c80fbade9efd4fbad88b958037661d3f0d54
|
||||
size 469636
|
||||
oid sha256:710bfb358ad115d2b806c4cea2e817b8b4e11e46e7c602f71a51e1843175b0ba
|
||||
size 469389
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d34151e39c6999ed1928c667292d8055c279b2f1a9e4ad43dbd8597b81e358dd
|
||||
size 2078574
|
||||
oid sha256:8f5fc437215757e2fe1572929f46edae9d1b2d48a17f12f01864447844ffe625
|
||||
size 2078098
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c685e56cc1f0abf3682f3554a086177f3242338fe9486f8dd2c86e72e88e8a8f
|
||||
size 432565
|
||||
oid sha256:782f93ded951f2408351019542a1cb9161fcc2cbdc773d3b5f5d840e1876dbe2
|
||||
size 432743
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:338c12ce0b89dd2490e275aaf809c57007dca5b36e257d9f1f88c49ae61fd46b
|
||||
size 1695168
|
||||
oid sha256:3836e9719ad78407172c5b9b82b50c9c4401712b036e84d3dbdbd7af356eb1f1
|
||||
size 1696053
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:acf1007cd6fa9d558a0cb2e32da8a0efef52e25e37d0d4004c54c08a69424cab
|
||||
size 280079
|
||||
oid sha256:73833e6f6ead37854e7e496cf6e18c3e570c4547285d72a87234c1da9668a16a
|
||||
size 280275
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:adb577e3b85135c7d2d74fd4e49801a2c13e5b83dfcab6d51cb2ccae5840e2e2
|
||||
size 1066314
|
||||
oid sha256:84ef8deaa4e2cbe618b9f7d4e84d7584ec18c4c7484c7dfb31baa122965fd4b1
|
||||
size 1067387
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f4a6daa0a6103c8e6a212f7286bbdfdc4788efdcd8f15d6f7bee25b4fa7b8b4f
|
||||
size 528722
|
||||
oid sha256:95c3a701caa399267e2c4561ee6428786c97b8114fb54827a50c4b1a082a03ec
|
||||
size 528837
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ddcace20a737edfb95babe39fcb6a4084d87651338524917484e63365ecf1be5
|
||||
size 2797340
|
||||
oid sha256:9b643698c89d77e12e75c7791f897d21eab4411f269ca1c04d4f85c0e69d1610
|
||||
size 2795539
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b80a064761e74f5de33b00d7cfa3c5292e90de432aa1ce1eac5f62dc32cf760e
|
||||
size 443795
|
||||
oid sha256:7eee8da03512d7e44ce7372ade0e5b62692d894ab09b0567701b4ccaa52ddc5d
|
||||
size 443913
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ce3a17d0e29ba6f797cf53195dc6453a7b786766d680640275907a45aba98f6
|
||||
size 1852334
|
||||
oid sha256:2e29d6d30401ec984cf37e6503b83c8436589d3141cd486e5b46f7a2d8756772
|
||||
size 1852753
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:953216ed98e23048f592656701ad96715fa87bd834a7e6dbbcafeca7027f80f7
|
||||
size 524563
|
||||
oid sha256:de3163af1b65adab0e61402d64c5346c20512908cfbde1c45e467a5b20246a99
|
||||
size 524485
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e67c46ffdeb963837286e15bff981ad665bb93fc5cd8860e9ca59da7c2af7acf
|
||||
size 833042
|
||||
oid sha256:3614fa0b9ae3ce13c57ff1933d5e012fddcd4722008fc49ad0675800f84b236f
|
||||
size 833196
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e3631e646331e18e7ef216349de954217a314f817dd9e8b82207e7c7c51580fd
|
||||
size 490218
|
||||
oid sha256:6f5bb194bd848d0d946b871a3623c9e17b4996155d2b5192fa4c59d22d1f2391
|
||||
size 490180
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:01f6bcd6d8af9c79fdaea9745470e62a948182dd540df9ff50f82a2ac9b2c815
|
||||
size 2178636
|
||||
oid sha256:665e602d97dfa60b4d9acaedfed9a0fd50b3ab692f44b414ff96b952a917722b
|
||||
size 2178548
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b6b3ff968d2cd4ca96cc83725b52126b5f35d5f3d8bf0b112ce38b0c13dc6ccf
|
||||
size 452181
|
||||
oid sha256:5b8934c1910c89b095a39305f8e3c926f74fdc7aecdca592aae08acc29a8dff6
|
||||
size 451311
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bcecbed38b7736b98cb37051fca99202e79f51011aee5f825044c23d9bdcf291
|
||||
size 1770256
|
||||
oid sha256:eec1a07a6be924ddfb8138ce33db6f989a7af5a5c1b1d60240a7639fd8708208
|
||||
size 1770130
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5c43c13cb97fbde959fbe6b5ce3e3a65213f7643f1e007b1420f65159bfebe30
|
||||
size 278360
|
||||
oid sha256:80c1833a0c16f6b55d60a278074249b2d60796e7f74f22f58089fe405fe70ab5
|
||||
size 278059
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8f167a46fe3b67e7e3cb2ae445365c6f4222be1326dd847745661b5b6f66627d
|
||||
size 1055919
|
||||
oid sha256:27dfe29160cd0dae01bae74fa574b48c3ff78c850044a7e9f4b7e29b895c719f
|
||||
size 1055794
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3893b7a70bc0e3e5fb0dd2e9fa872877c66e53c2fa070d3936981a0fb79083f5
|
||||
size 550429
|
||||
oid sha256:1c6eff52008b15fa04eea8a60ec7ad7186331e7e199e8e9c308b9ca84eba0285
|
||||
size 550259
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2a38e5c072e84e41e145d2a83cce680288a56711fca8a74dd88b2174f14568f0
|
||||
size 2912155
|
||||
oid sha256:f4755535e665aca2b4d3cef458d2870d177ec4385f555d96ca406bc92e0e303d
|
||||
size 2912295
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5805e5292eeee4307adac87d11f300b0c9aa2ac255decbf6b36090c785c20e3d
|
||||
size 464980
|
||||
oid sha256:06df4c0c75d653988a2c0121418cef544bd3039a0bd3dce3705aa999e0b5bc8b
|
||||
size 464668
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c2db737fe960766f3e63b9af7f14950d7c1862bef737282a722653826b8f1bcf
|
||||
size 1937882
|
||||
oid sha256:66f8f2c8507a71deea9ab44c7bcd2af645ab981a246d077e531fbd0ca7ed7a41
|
||||
size 1935935
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:de60d143e3ba1040b6740423052b12c0bff719279c5dafe49bbb1e3d49367718
|
||||
size 534208
|
||||
oid sha256:b9a1e05c322df7ba46dc3bb1f264dba98736bf4e8eda0b793d728618506dc86d
|
||||
size 534280
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bb494aeef75821e2249e3c1b78ebbf5725c2871a2827612b89b6b54ea166a72f
|
||||
size 846389
|
||||
oid sha256:b820ba3c98ad6168077a502a413b2a098e7df80a6b97972acccc30f98e8fdd9d
|
||||
size 846071
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ba1e05cfb5d0d9f58d28116a74d8b17bd4677499bc3d32b979adbcd0a2c65b9
|
||||
size 497111
|
||||
oid sha256:4c638c39e6b7200c0464f3770c62654b0d79463f9b37202f8ad328377e0c57a5
|
||||
size 497359
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1c5a2075480d96e482ac7b32b5730534927cf806a4a4a93de1b17d7218eec483
|
||||
size 2221120
|
||||
oid sha256:35570febd38d204f9dbf00ab1cb500079d0196f04699fb9ead4d16478179ba4f
|
||||
size 2222890
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d429da81b9b8f6a41761b2c1b958dd9429169d98b28c006fbb3795a285bda551
|
||||
size 460700
|
||||
oid sha256:244c6299daacb308006c2e23b670d14e577a72784599d7abbdec9c522dc63a9a
|
||||
size 460626
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9e285537009b4ebe3c61eec04229aab298c5b75088fc2033d729da5bebc5579b
|
||||
size 1805083
|
||||
oid sha256:19f773c6354c52156a3acd817f080a6f65cd8ec0b10ee38bb9947e8b46d14e57
|
||||
size 1805615
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:703434303c3e20c0712db4e667f0818218ca2777b99f3ff1fd00f0c5b51ff13f
|
||||
size 278411
|
||||
oid sha256:1a5fb4ca956185092b707911d7e1bdb8443425d88406942dcda8c8975e090f31
|
||||
size 278405
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c483e0104946c61a288e07ae8af3586855896181106ba60353ed6bd3c46e84f2
|
||||
size 1056484
|
||||
oid sha256:a147a634f50209c974f53eacecaf2eea6ad11174c5d787f7a639d29d0c08de72
|
||||
size 1056416
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1142562aff3826e8a5eb1b9e5b04a9694416f9c0f245b066d0481fcee436347a
|
||||
size 559510
|
||||
oid sha256:d560f7cd52fe04ced27301b021f1f6852f0fe79da03405b68165be063838fad4
|
||||
size 559018
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ff061a64f84cb1768faa52b46fd5913b2aa299061898f2c0d8c1215ff45546c
|
||||
size 2966538
|
||||
oid sha256:e4417fe2218a8249fbf0f87818633a6dc74c0952e6998c26fabde8353672117e
|
||||
size 2965954
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c89e965a051caaf3461c6678121aeecfe34683c5866108fb6bb5ad34ac021dec
|
||||
size 472164
|
||||
oid sha256:831d77ff9a29e707aa8a75be9aa6ae358e1aebfe1c72ac746f15a1e105c697e6
|
||||
size 472278
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7c418a18018fbaf29ff24f53afbe7a5ebe164b4445a2b81a04a10b06fea4cdcd
|
||||
size 1972205
|
||||
oid sha256:4a0ceb638247811fba5abbb83890c29a7842d4ac77e795e725bf4ec6bb66a865
|
||||
size 1971905
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e0c0688e6a354e348c3b05f6c85efca8e823200544e874998734599f18dea4b0
|
||||
size 709996
|
||||
oid sha256:64a1de4957169ba0a37fc1c5ee80a55be890c7909f0b64e83c2d6af9e3d25cae
|
||||
size 710205
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4216f859bf836b7809f660b6d2ba9f472d6ceef7ae978d8f66a993de233e07b9
|
||||
size 969241
|
||||
oid sha256:039427a1a0743bd73e7443049b47def620a7db259220ffaed9dca58d8734a0a8
|
||||
size 969570
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:02b89a4bb6a2a51a6774184006aec864bece5aaeb02a2c2d274f8b1cabc19905
|
||||
size 647919
|
||||
oid sha256:2c5013ca0d035b182404905b521f9057cf65f3d1ddc8803883524441d32ace3a
|
||||
size 647796
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a21bf76cd11992957c0ea9851139e3dc11c930eb8653eb46986806ea291072d1
|
||||
size 2902817
|
||||
oid sha256:7782eff8b4239239cb9e4c122e025ed9d1a5b31d17b52b6db30bf0c54602fb90
|
||||
size 2902715
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bb8a49506359ee3e02a7362b7b2657b65c9d729724cbd41b0d53bee372b40404
|
||||
size 624881
|
||||
oid sha256:3f7f596040241bfcbfea1aad506e6127a25e06a3b91e6035f60d6ef5baf33d1b
|
||||
size 624688
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0f634e9618f61af14ba9473a2e36be73a3e9b18e89a7217dea223467e984d797
|
||||
size 2380946
|
||||
oid sha256:7ded42fa65ab9f89c35c1a2b62f4adb28e54928e21ae6a90f506d6106bd14eb3
|
||||
size 2380920
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0424c5f2df03b0f3bddfffe41dbe274f4d6cd9ef3975c1e6ee711189ea885a3f
|
||||
size 306533
|
||||
oid sha256:c910813cbc4cb21cdf4fc5704165e8a7d655c5dc50c3ea5bfb9bb725a7c58f3f
|
||||
size 306633
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:de848dad3f1bb3d179b207e04e25fc3d70e2aa6df9281861ca5b283b35266a8f
|
||||
size 1087971
|
||||
oid sha256:f6a43c938557fe16bccb0aaef415081afbd61bd6af997a73d4e099ea0f0c682c
|
||||
size 1087496
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:38215cfdcbc8d73132fb7576bf6979145cf542421fc17da04fd62a80758fde75
|
||||
size 738464
|
||||
oid sha256:b9284621641204672081fb1ec2e87302c328cae43e9653d0dd9203e016dad44d
|
||||
size 738597
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f3567635f4ad64a19cfea989b916d913def004c8c0444216337164bf4d35447e
|
||||
size 3852136
|
||||
oid sha256:4d7a794f3daf898b3010a74d37544a0b4f32a1b38e508bb570ccaca94df8b741
|
||||
size 3851744
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7d1c8a993eea6b4f881a1be954c001bfcf7c5b895c146a614081d43ea91d1766
|
||||
size 621401
|
||||
oid sha256:d27d9c4bf9fa6154e96e40d41233a7ed2ee1bb110f01a4408f7e0d54afc47eb8
|
||||
size 621318
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4be8a9ba87b0b39332581dfea061d3844b0363bab17dd253a1fc4a1c9a7a18d3
|
||||
size 2551517
|
||||
oid sha256:43711f8c82cef495e65a33c138f35897a7e28e943f310caa9537bfbd67cc751a
|
||||
size 2551446
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c36fb2de47b7ee7bb622d4a5b128695f96bf24e20bccff0e128210fb7b74151b
|
||||
size 414404
|
||||
oid sha256:c661c18528e25a384bf5a156ae51e83a88d1b5f88f888a32c073dd047230b4ed
|
||||
size 413974
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0d8503028fab44bc13d9aebd6b708a67393478a3168f57dbc17daa41449d4479
|
||||
size 631051
|
||||
oid sha256:037a4538520e5062bcdb20e37ef4ebdb0d687aec04046756f5167d9ab399e1a6
|
||||
size 630453
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d0f295e268d0f9b217c269ea04e705bf88834c4f47632cf7b735d204db271d8d
|
||||
size 390796
|
||||
oid sha256:8ecf94372d1afe964c62f89374d1fade0beb6b9c4802a332368357ffaf2ee17f
|
||||
size 390850
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:95faa66dc1752e9bd9b57da092469748fe8c7e8ed7c3c4aaecaba9dd1764c2e1
|
||||
size 1698716
|
||||
oid sha256:78361cc1a930762cd18781d647eba9df8434a9e1efc09b00fd09354ea744f2b8
|
||||
size 1698717
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:edace1f300d46b0b3a1ad126a483fafae79a62854d7a7e7eaf65e944fa212e5e
|
||||
size 360829
|
||||
oid sha256:7022419d127a3cb9853e21f47076c00a1f3f4000876c8d95a9e5c9c8a71471cd
|
||||
size 360807
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fb0121a813a3b92beff87eda43bc9a1949c70c6e5830dbd1b3f973f08d159b4e
|
||||
size 1354056
|
||||
oid sha256:61b5cfdab158b7fd62821bd11ed5e61b2a25632342d0d0b3cc96e9f4be70bdf8
|
||||
size 1353241
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2a707baa6125bd74f5857d3f295efbc291610986f450eed7495fd9a095b75472
|
||||
size 200686
|
||||
oid sha256:d0d62a2c36c7e7593104fc3e09b9d211b936f0fee3412bfd8b7f0fe1a6f7c7bd
|
||||
size 200838
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:344ce735c2453ae8f3aba0cf5618c5f322ab45756d4c352ff05f7c17c90ab61d
|
||||
size 718086
|
||||
oid sha256:49044a92a34f5d862adbfd5b00cfe8384c080825b928dbc1e7a38e0aa3d94099
|
||||
size 718377
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4cb8437b42f9ca86358876822ca9ee56aa9d3a60358eda4e339fcebee6a8ae6e
|
||||
size 435303
|
||||
oid sha256:2081521177feacc3c4bc121836779af1f28c043017988fc9065884a513935ceb
|
||||
size 435241
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:da9ab5b6230a098171f3be7d6016846cd521baf20b22b13ccfe68b785d8a9055
|
||||
size 2216332
|
||||
oid sha256:d9f9a8198e08ac6443cd625325132c3399110a94a82402dc9791cb10e427732d
|
||||
size 2216575
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8279d7d1b8551f7b07e74e2611cb7530b7c566839e180f71d1d0e8615c4393d5
|
||||
size 371544
|
||||
oid sha256:cad00ddc6c687ff03c8c5692c2cff8d70fe77e904290dda90c265c1fec407df5
|
||||
size 371491
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e485677b896ed0baed07610e2ab9f0ee13c41438e07ebef826e322d4e9ae1bd4
|
||||
size 1496286
|
||||
oid sha256:d58c0f97f6bb8f8f7533f81ac5919421d4dc130e92a7191dbbbc30fff1373bc5
|
||||
size 1496175
|
||||
|
||||
Reference in New Issue
Block a user