You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -14,7 +14,7 @@ shortTitle: Archive content & data
14
14
---
15
15
## Persistence of public repositories
16
16
17
-
{% data variables.product.product_name %} intends to keep your public repositories available unless you remove them. In some cases, we may make public content unavailable, for example if:
17
+
{% data variables.product.company_short %} intends to keep your public repositories available unless you remove them. In some cases, we may make public content unavailable, for example if:
18
18
19
19
* We receive a [DMCA Takedown Notice](/free-pro-team@latest/site-policy/content-removal-policies/dmca-takedown-policy) for content in a repository.
20
20
* We determine that a repository's content violates our [Community Guidelines](/free-pro-team@latest/site-policy/github-terms/github-community-guidelines) or [Terms of Service](/free-pro-team@latest/site-policy/github-terms/github-terms-of-service).
@@ -33,4 +33,4 @@ You can opt out of the {% data variables.product.prodname_archive %} for your re
33
33
34
34
## Adding an open source license to increase archivability
35
35
36
-
Libraries and researchers may require legal protections to create archives of publicly available content. If you want third parties to consider your work on {% data variables.product.product_name %} for archiving, you can add an [open source license](/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository) to your projects. An open source license gives contributors explicit permissions to copy and distribute the material in your repositories.
36
+
Libraries and researchers may require legal protections to create archives of publicly available content. If you want third parties to consider your work on {% data variables.product.github %} for archiving, you can add an [open source license](/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository) to your projects. An open source license gives contributors explicit permissions to copy and distribute the material in your repositories.
Copy file name to clipboardexpand all lines: content/repositories/archiving-a-github-repository/referencing-and-citing-content.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ To make your repositories easier to reference in academic literature, you can cr
27
27
1. Navigate to the [Zenodo {% data variables.product.prodname_dotcom %} page](https://zenodo.org/account/settings/github/).
28
28
1. To the right of the name of the repository you want to archive, toggle the button to **On**.
29
29
30
-
Zenodo archives your repository and issues a new DOI each time you create a new {% data variables.product.product_name %} [release](/repositories/releasing-projects-on-github/about-releases). Follow the steps at [AUTOTITLE](/repositories/releasing-projects-on-github/managing-releases-in-a-repository) to create a new one.
30
+
Zenodo archives your repository and issues a new DOI each time you create a new {% data variables.product.github %} [release](/repositories/releasing-projects-on-github/about-releases). Follow the steps at [AUTOTITLE](/repositories/releasing-projects-on-github/managing-releases-in-a-repository) to create a new one.
31
31
32
32
## Publicizing and citing research material with Figshare
Copy file name to clipboardexpand all lines: content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,7 @@ Once you have enabled the "Require merge queue" setting, you can also access the
80
80
81
81
As pull requests are added to the merge queue, the merge queue ensures that they are merged in a first-in-first-out order where the required checks are always satisfied.
82
82
83
-
A merge queue creates temporary branches with a special prefix to validate pull request changes. When a pull request is added to the merge queue, the changes in the pull request are grouped into a `merge_group` with the latest version of the `base_branch` as well as changes from pull requests ahead of it in the queue. {% data variables.product.product_name %} will merge all these changes into the `base_branch` once the checks required by the branch protections of `base_branch` pass.
83
+
A merge queue creates temporary branches with a special prefix to validate pull request changes. When a pull request is added to the merge queue, the changes in the pull request are grouped into a `merge_group` with the latest version of the `base_branch` as well as changes from pull requests ahead of it in the queue. {% data variables.product.github %} will merge all these changes into the `base_branch` once the checks required by the branch protections of `base_branch` pass.
84
84
85
85
For information about merge methods, see [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges).
86
86
@@ -92,7 +92,7 @@ When multiple pull requests are added to the merge queue and when the temporary
92
92
1. The merge queue creates a temporary branch with the prefix of `main/pr-1` that contains code changes from the target branch and pull request #1. A `merge_group` webhook event of type `checks_requested` is dispatched and the merge queue will await a response from your CI provider.
93
93
1. User adds pull request #2 to the merge queue.
94
94
1. The merge queue creates a temporary branch with the prefix of `main/pr-2` that contains code changes from the target branch, pull request #1, and pull request #2, and dispatches webhooks.
95
-
1. When the {% data variables.product.product_name %} API receives successful CI responses for `merge_group` branches `main/pr-1` and `main/pr-2`, the temporary branch `main/pr-2` will be merged in to the target branch. The target branch now contains both changes from pull request #1 and #2.
95
+
1. When the {% data variables.product.github %} API receives successful CI responses for `merge_group` branches `main/pr-1` and `main/pr-2`, the temporary branch `main/pr-2` will be merged in to the target branch. The target branch now contains both changes from pull request #1 and #2.
96
96
97
97
### Failing CI
98
98
@@ -104,9 +104,9 @@ The following scenario outlines what happens when a CI reports a failing status
104
104
1. The merge queue creates a temporary branch with the prefix of `main/pr-1` that contains code changes from the target branch and pull request #1. A `merge_group` webhook event of type `checks_requested` is dispatched and the merge queue will await a response from your CI provider.
105
105
1. User adds pull request #2 to the merge queue.
106
106
1. The merge queue creates a temporary branch with the prefix of `main/pr-2` that contains code changes from the target branch, pull request #1, and pull request #2, and dispatches webhooks.
107
-
1. When the {% data variables.product.product_name %} API receives a failing status for `main/pr-1`, the merge queue automatically removes pull request #1 from the merge queue.
107
+
1. When the {% data variables.product.github %} API receives a failing status for `main/pr-1`, the merge queue automatically removes pull request #1 from the merge queue.
108
108
1. The merge queue recreates the temporary branch with the prefix of `main/pr-2` to only contain changes from the target branch and pull request #2.
109
-
1. When the {% data variables.product.product_name %} API receives successful CI responses for `merge_group` branch `main/pr-2`, the temporary branch `main/pr-2` will be merged in to the target branch without pull request #1 included.
109
+
1. When the {% data variables.product.github %} API receives successful CI responses for `merge_group` branch `main/pr-2`, the temporary branch `main/pr-2` will be merged in to the target branch without pull request #1 included.
110
110
111
111
{% data reusables.pull_requests.merge-queue-removal-reasons %}
Copy file name to clipboardexpand all lines: content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/renaming-a-branch.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ Organizational rulesets that apply to branches of a repository will no longer al
36
36
37
37
## Updating a local clone after a branch name changes
38
38
39
-
After you rename a branch in a repository on {% data variables.product.product_name %}, any collaborator with a local clone of the repository will need to update the clone.
39
+
After you rename a branch in a repository on {% data variables.product.github %}, any collaborator with a local clone of the repository will need to update the clone.
40
40
41
41
From the local clone of the repository on a computer, run the following commands to update the name of the default branch.
Copy file name to clipboardexpand all lines: content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/viewing-branches-in-your-repository.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Viewing branches in your repository
3
-
intro: 'Branches are central to collaboration on {% data variables.product.product_name %}, and the best way to view them is the branches page.'
3
+
intro: 'Branches are central to collaboration on {% data variables.product.github %}, and the best way to view them is the branches page.'
Copy file name to clipboardexpand all lines: content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -129,7 +129,7 @@ When you enable required commit signing on a branch, contributors {% ifversion f
129
129
> If a collaborator pushes an unsigned commit to a branch that requires commit signatures, the collaborator will need to rebase the commit to include a verified signature, then force push the rewritten commit to the branch.
130
130
{% endif %}
131
131
132
-
You can always push local commits to the branch if the commits are signed and verified. {% ifversion fpt or ghec %}You can also merge signed and verified commits into the branch using a pull request on {% data variables.product.product_name %}. However, you cannot squash and merge a pull request into the branch on {% data variables.product.product_name %} unless you are the author of the pull request.{% else %} However, you cannot merge pull requests into the branch on {% data variables.product.product_name %}.{% endif %} You can {% ifversion fpt or ghec %}squash and {% endif %}merge pull requests locally. For more information, see [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally).
132
+
You can always push local commits to the branch if the commits are signed and verified. {% ifversion fpt or ghec %}You can also merge signed and verified commits into the branch using a pull request. However, you cannot squash and merge a pull request into the branch on {% data variables.product.github %} unless you are the author of the pull request.{% else %} However, you cannot merge pull requests into the branch on {% data variables.product.github %}.{% endif %} You can {% ifversion fpt or ghec %}squash and {% endif %}merge pull requests locally. For more information, see [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally).
133
133
134
134
{% ifversion fpt or ghec %} For more information about merge methods, see [AUTOTITLE](/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/about-merge-methods-on-github).{% endif %}
135
135
@@ -180,7 +180,7 @@ You can only give push access to a protected branch, or give permission to creat
180
180
181
181
### Allow force pushes
182
182
183
-
By default, {% data variables.product.product_name %} blocks force pushes on all protected branches. When you enable force pushes to a protected branch, you can choose one of two groups who can force push:
183
+
By default, {% data variables.product.github %} blocks force pushes on all protected branches. When you enable force pushes to a protected branch, you can choose one of two groups who can force push:
184
184
185
185
1. Allow everyone with at least write permissions to the repository to force push to the branch, including those with admin permissions.
186
186
1. Allow only specific people or teams to force push to the branch.
Copy file name to clipboardexpand all lines: content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/available-rules-for-rulesets.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ With both methods, we use the `verified_signature?` to confirm if a commit has a
96
96
97
97
{% endif %}
98
98
99
-
You can always push local commits to the branch if the commits are signed and verified. {% ifversion fpt or ghec %}You can also merge signed and verified commits into the branch using a pull request on {% data variables.product.product_name %}. However, you cannot squash and merge a pull request into the branch on {% data variables.product.product_name %} unless you are the author of the pull request.{% else %} However, you cannot merge pull requests into the branch on {% data variables.product.product_name %}.{% endif %} You can {% ifversion fpt or ghec %}squash and {% endif %}merge pull requests locally. For more information, see [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally).
99
+
You can always push local commits to the branch if the commits are signed and verified. {% ifversion fpt or ghec %}You can also merge signed and verified commits into the branch using a pull request. However, you cannot squash and merge a pull request into the branch on {% data variables.product.github %} unless you are the author of the pull request.{% else %} However, you cannot merge pull requests into the branch on {% data variables.product.github %}.{% endif %} You can {% ifversion fpt or ghec %}squash and {% endif %}merge pull requests locally. For more information, see [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally).
100
100
101
101
{% ifversion fpt or ghec %} For more information about merge methods, see [AUTOTITLE](/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/about-merge-methods-on-github).{% endif %}
Copy file name to clipboardexpand all lines: content/repositories/creating-and-managing-repositories/about-repositories.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ Clone | To download a full copy of a repository's data from {% data variables.lo
38
38
Fork | A new repository that shares code and visibility settings with the original "upstream" repository.
39
39
Merge | To take the changes from one branch and apply them to another.
40
40
Pull request | A request to merge changes from one branch into another.
41
-
Remote | A repository stored on {% data variables.product.product_name %}, not on your computer.
41
+
Remote | A repository stored on {% data variables.product.github %}, not on your computer.
42
42
Upstream | The branch on an original repository that has been forked or cloned. The corresponding branch on the cloned or forked repository is called the "downstream."
Copy file name to clipboardexpand all lines: content/repositories/creating-and-managing-repositories/creating-a-new-repository.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ topics:
37
37
{% data reusables.repositories.owner-drop-down %}
38
38
{% data reusables.repositories.repo-name %}
39
39
{% data reusables.repositories.choose-repo-visibility %}
40
-
1. If you're not using a template, there are a number of optional items you can pre-populate your repository with. If you're importing an existing repository to {% data variables.product.product_name %}, don't choose any of these options, as you may introduce a merge conflict. You can add or create new files using the user interface or choose to add new files using the command line later. For more information, see [AUTOTITLE](/migrations/importing-source-code/using-the-command-line-to-import-source-code/importing-an-external-git-repository-using-the-command-line), [AUTOTITLE](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository#adding-a-file-to-a-repository-using-the-command-line), and [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts).
40
+
1. If you're not using a template, there are a number of optional items you can pre-populate your repository with. If you're importing an existing repository to {% data variables.product.github %}, don't choose any of these options, as you may introduce a merge conflict. You can add or create new files using the user interface or choose to add new files using the command line later. For more information, see [AUTOTITLE](/migrations/importing-source-code/using-the-command-line-to-import-source-code/importing-an-external-git-repository-using-the-command-line), [AUTOTITLE](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository#adding-a-file-to-a-repository-using-the-command-line), and [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts).
41
41
* You can create a README, which is a document describing your project. For more information, see [AUTOTITLE](/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes).
42
42
* You can create a _.gitignore_ file, which is a set of ignore rules. For more information, see [AUTOTITLE](/get-started/getting-started-with-git/ignoring-files).{% ifversion fpt or ghec %}
43
43
* You can choose to add a software license for your project. For more information, see [AUTOTITLE](/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository).{% endif %}
Copy file name to clipboardexpand all lines: content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Creating an issues-only repository
3
-
intro: '{% data variables.product.product_name %} does not provide issues-only access permissions, but you can accomplish this using a second repository which contains only the issues.'
3
+
intro: '{% data variables.product.github %} does not provide issues-only access permissions, but you can accomplish this using a second repository which contains only the issues.'
Copy file name to clipboardexpand all lines: content/repositories/creating-and-managing-repositories/index.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Creating and managing repositories
3
-
intro: 'You can create a repository on {% data variables.product.product_name %} to store and collaborate on your project''s files, then manage the repository''s name and location.'
3
+
intro: 'You can create a repository on {% data variables.product.github %} to store and collaborate on your project''s files, then manage the repository''s name and location.'
Copy file name to clipboardexpand all lines: content/repositories/creating-and-managing-repositories/quickstart-for-repositories.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -20,15 +20,15 @@ topics:
20
20
---
21
21
## Create a repository
22
22
23
-
{% data variables.product.product_name %} repositories store a variety of projects. In this guide, you'll create a repository and commit your first change.
23
+
{% data variables.product.github %} repositories store a variety of projects. In this guide, you'll create a repository and commit your first change.
24
24
25
25
{% webui %}
26
26
27
27
{% data reusables.repositories.create_new %}
28
28
1. Type a short, memorable name for your repository. For example, "hello-world".
29
29
30
30

31
-
1. Optionally, add a description of your repository. For example, "My first repository on {% data variables.product.product_name %}."
31
+
1. Optionally, add a description of your repository. For example, "My first repository on {% data variables.product.github %}."
32
32
{% data reusables.repositories.choose-repo-visibility %}
33
33
{% data reusables.repositories.initialize-with-readme %}
Copy file name to clipboardexpand all lines: content/repositories/creating-and-managing-repositories/repository-limits.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,9 @@ topics:
9
9
- Repositories
10
10
---
11
11
12
-
Certain types of repository resources can be quite large, requiring excessive processing on {% data variables.product.product_name %}. Because of this, limits are set to ensure requests complete in a reasonable amount of time.
12
+
Certain types of repository resources can be quite large, requiring excessive processing on {% data variables.product.github %}. Because of this, limits are set to ensure requests complete in a reasonable amount of time.
13
13
14
-
Most of the limits below affect both {% data variables.product.product_name %} and the API.
14
+
Most of the limits below affect both {% data variables.product.github %} and the API.
0 commit comments