Skip to content
代码片段 群组 项目
未验证 提交 172b27ec 编辑于 作者: Brendan Lynch's avatar Brendan Lynch 提交者: GitLab
浏览文件

Merge branch '470606-embed-forking-info' into 'master'

Improve forks page, build crosslinks, dedupe information

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/177335



Merged-by: default avatarBrendan Lynch <blynch@gitlab.com>
Reviewed-by: default avatarBrendan Lynch <blynch@gitlab.com>
Co-authored-by: default avatarAmy Qualls <aqualls@gitlab.com>
No related branches found
No related tags found
无相关合并请求
...@@ -23,7 +23,7 @@ to streamline merge request creation. ...@@ -23,7 +23,7 @@ to streamline merge request creation.
You can create a merge request from the list of merge requests. You can create a merge request from the list of merge requests.
1. On the left sidebar, select **Search or go to** and find your project. 1. On the left sidebar, select **Search or go to** and find your GitLab project.
1. Select **Code > Merge requests**. 1. Select **Code > Merge requests**.
1. In the upper-right corner, select **New merge request**. 1. In the upper-right corner, select **New merge request**.
1. Select a source and target branch, then select **Compare branches and continue**. 1. Select a source and target branch, then select **Compare branches and continue**.
...@@ -50,8 +50,9 @@ To create a branch and a merge request at the same time: ...@@ -50,8 +50,9 @@ To create a branch and a merge request at the same time:
1. Select **Plan > Issues** and find your issue. 1. Select **Plan > Issues** and find your issue.
1. Go to the bottom of the issue description. 1. Go to the bottom of the issue description.
1. Select **Create merge request > Create merge request and branch**. 1. Select **Create merge request > Create merge request and branch**.
1. On the dialog, review the suggested branch name. 1. On the dialog, review the suggested branch name. It's based on your project's
It's based on your project's [branch name template](../repository/branches/index.md).1. Optional. If the branch name is already taken, or you need a different branch name, rename it. [branch name template](../repository/branches/index.md).
1. Optional. If the branch name is already taken, or you need a different branch name, rename it.
1. Select a source branch or tag. 1. Select a source branch or tag.
1. Select **Create merge request**. 1. Select **Create merge request**.
...@@ -184,33 +185,47 @@ You can create a merge request from your fork to contribute back to the main pro ...@@ -184,33 +185,47 @@ You can create a merge request from your fork to contribute back to the main pro
1. For **Source branch**, select the branch in your fork that contains your changes. 1. For **Source branch**, select the branch in your fork that contains your changes.
1. For **Target branch**: 1. For **Target branch**:
1. Select the target project. (Make sure to select the upstream project, rather than your fork.) 1. Select the upstream repository, and not your fork.
1. Select a branch from the upstream repository. If you contribute changes upstream frequently, consider setting a
[default target](#set-the-default-target-project) for your fork.
1. Select a branch from the upstream repository:
![Selecting branches](../repository/img/forking_workflow_branch_select_v15_9.png)
NOTE: NOTE:
If you contribute changes upstream frequently, consider setting a If your fork's visibility is more restricted than the parent repository, the target branch defaults
[default target project](#set-the-default-target-project) for your fork. to your fork's default branch. This prevents potential exposure of private information in your fork.
1. Select **Compare branches and continue**. 1. Select **Compare branches and continue**.
1. Select **Create merge request**. The merge request is created in the target project, 1. Select **Create merge request**. The merge request is created in the target repository,
not your fork. not your fork.
1. Add your desired labels, milestones, reviewers, and assignees.
1. Select **Submit merge request**.
After your work merges, [unlink your fork](../repository/forking_workflow.md#unlink-a-fork) If the merge request targets another repository, it uses:
from its upstream project if you don't intend to make more contributions.
For more information, [see the forking workflow documentation](../repository/forking_workflow.md). - The target project's approval rules.
- Your fork's CI/CD configuration, resources, and project CI/CD variables.
### Set the default target project To run CI/CD pipelines in the upstream project,
[you must be a member of that project](../../../ci/pipelines/merge_request_pipelines.md#use-with-forked-projects).
If you run a merge request pipeline
[in the parent project](../../../ci/pipelines/merge_request_pipelines.md#run-pipelines-in-the-parent-project)
for a merge request from a fork, all variables become available to the pipeline.
After your work merges, [unlink your fork](../repository/forking_workflow.md#unlink-a-fork)
from its upstream repository if you don't intend to make more contributions.
By default, merge requests originating from a fork target the upstream project, not the forked project. ### Set the default target project
You can configure your forked project to be the default target rather than the upstream project. By default, merge requests originating from a fork target the upstream repository, not your fork.
You can configure your forked repository to be the default target, rather than the upstream repository.
Prerequisites: Prerequisites:
- You're working in a fork. - You're working in a fork.
- You must have at least the Developer role, or be allowed to create merge requests in the project. - You must have at least the Developer role, or be allowed to create merge requests in the project.
- The upstream project allows merge requests to be created. - The upstream repository allows merge requests to be created.
- The [visibility settings](../../public_access.md#change-project-visibility) for - The [visibility settings](../../public_access.md#change-project-visibility) for
the fork must match, or be less strict than, the upstream repository. For example: the fork must match, or be less strict than, the upstream repository. For example:
this setting isn't shown if your fork is private, but the upstream is public. this setting isn't shown if your fork is private, but the upstream is public.
...@@ -226,11 +241,11 @@ To do this: ...@@ -226,11 +241,11 @@ To do this:
## By sending an email ## By sending an email
You can create a merge request by sending an email message to GitLab. You can create a merge request by sending an email message to GitLab.
The merge request target branch is the project's default branch. The merge request target branch is the repository's default branch.
Prerequisites: Prerequisites:
- The merge request must target the current project, not an upstream project. - The merge request must target the current repository, not an upstream repository.
- A GitLab administrator must configure [incoming email](../../../administration/incoming_email.md). - A GitLab administrator must configure [incoming email](../../../administration/incoming_email.md).
This setting is enabled on GitLab.com. This setting is enabled on GitLab.com.
- A GitLab administrator must configure [Reply by email](../../../administration/reply_by_email.md). - A GitLab administrator must configure [Reply by email](../../../administration/reply_by_email.md).
...@@ -281,13 +296,13 @@ The option to **Create merge request** doesn't display on an issue if: ...@@ -281,13 +296,13 @@ The option to **Create merge request** doesn't display on an issue if:
To make this button appear, one possible workaround is to To make this button appear, one possible workaround is to
[remove your project's fork relationship](../repository/forking_workflow.md#unlink-a-fork). [remove your project's fork relationship](../repository/forking_workflow.md#unlink-a-fork).
After removal, the fork relationship cannot be restored. This project can no longer After removal, you can't restore the fork relationship. Your project can no longer
be able to receive or send merge requests to the source project, or other forks. send or receive merge requests to the source project, or other forks of it.
### Email message could not be processed ### Email message could not be processed
When sending an email to create a merge request, and you attempt to target an When sending an email to create a merge request, and you attempt to target an
upstream project, GitLab responds with this error: upstream repository, GitLab responds with this error:
```plaintext ```plaintext
Unfortunately, your email message to GitLab could not be processed. Unfortunately, your email message to GitLab could not be processed.
......
...@@ -11,19 +11,20 @@ DETAILS: ...@@ -11,19 +11,20 @@ DETAILS:
**Tier:** Free, Premium, Ultimate **Tier:** Free, Premium, Ultimate
**Offering:** GitLab.com, GitLab Self-Managed, GitLab Dedicated **Offering:** GitLab.com, GitLab Self-Managed, GitLab Dedicated
Whenever possible, it's recommended to work in a common Git repository and use A fork is a personal copy of another Git repository, placed in the namespace of your choice.
branching strategies to manage your work. However, Your copy contains the upstream repository's content, including all branches, tags,
if you do not have write access for the repository you want to contribute to, you and CI/CD job configurations.
can create a fork. You can create merge requests from your fork to target the upstream repository.
Individual commits can also be [cherry-picked](../merge_requests/cherry_pick_changes.md) from
your fork into the upstream repository.
A fork is a personal copy of the repository and all its branches, which you create If you have write access to the original repository, you don't need a fork.
in a namespace of your choice. Make changes in your own fork and Instead, use branches to manage your work.
submit them through a merge request to the repository you don't have access to. If you don't have write access to a repository you want to contribute to, fork it.
Make your changes in your fork, then submit them through a merge request to the upstream repository.
The forked project uses a To create a [confidential merge request](../merge_requests/confidential.md),
[deduplication strategy](../../../development/git_object_deduplication.md) use a personal fork of a public repository.
to have a potentially smaller storage space than the source project. Forked projects
can access the object pool connected to the source project.
## Create a fork ## Create a fork
...@@ -46,7 +47,11 @@ To fork an existing project in GitLab: ...@@ -46,7 +47,11 @@ To fork an existing project in GitLab:
visibility levels, read [Project and group visibility](../../public_access.md). visibility levels, read [Project and group visibility](../../public_access.md).
1. Select **Fork project**. 1. Select **Fork project**.
GitLab creates your fork, and redirects you to the new fork's page. GitLab creates your fork, redirects you to the new fork's page, and logs the fork's
creation in the [audit log](../../compliance/audit_event_types.md).
If you intend to contribute changes upstream frequently, consider setting a
[default target](../merge_requests/creating_merge_requests.md#set-the-default-target-project) for your fork.
## Update your fork ## Update your fork
...@@ -71,7 +76,7 @@ or the command line. GitLab Premium and Ultimate tiers can also automate updates ...@@ -71,7 +76,7 @@ or the command line. GitLab Premium and Ultimate tiers can also automate updates
Prerequisites: Prerequisites:
- The fork must be created from an [unprotected branch](../repository/branches/protected.md) in upstream repository. - You must create your fork from an [unprotected branch](../repository/branches/protected.md) in upstream repository.
To update your fork from the GitLab UI: To update your fork from the GitLab UI:
...@@ -89,12 +94,12 @@ To update your fork from the GitLab UI: ...@@ -89,12 +94,12 @@ To update your fork from the GitLab UI:
1. If your fork is **behind** the upstream repository, select **Update fork** 1. If your fork is **behind** the upstream repository, select **Update fork**
to pull changes from the upstream repository. to pull changes from the upstream repository.
1. If your fork is **ahead and behind** the upstream repository, you can update from the UI 1. If your fork is **ahead and behind** the upstream repository, you can update from the UI
only if no merge conflicts are detected: only if GitLab detects no merge conflicts:
- If your fork contains no merge conflicts, you can select **Create merge request** - If your fork contains no merge conflicts, you can select **Create merge request**
to propose pushing your changes to the upstream repository, **Update fork** to propose pushing your changes to the upstream repository, **Update fork**
to pull changes down to your fork, or both. The type of changes in your fork to pull changes down to your fork, or both. The type of changes in your fork
determine which actions are appropriate. determine which actions are appropriate.
- If your fork contains merge conflicts, a step-by-step guide to update your fork from the command line is shown. - If your fork contains merge conflicts, GitLab shows a step-by-step guide to update your fork from the command line.
### From the command line ### From the command line
...@@ -130,23 +135,14 @@ With mirroring, before approving a merge request, you are asked to sync. You sho ...@@ -130,23 +135,14 @@ With mirroring, before approving a merge request, you are asked to sync. You sho
## Merge changes back upstream ## Merge changes back upstream
When you are ready to send your code back to the upstream project, When you are ready to send your code back to the upstream repository, create a new merge request as
[create a merge request](../merge_requests/creating_merge_requests.md). For **Source branch**, described in [When you work in a fork](../merge_requests/creating_merge_requests.md#when-you-work-in-a-fork).
choose your forked project's branch. For **Target branch**, choose the original project's branch. When successfully merged, your changes are added to the repository and branch you're merging into.
NOTE:
When creating a merge request, if the forked project's visibility is more restrictive than the parent project (for example the fork is private, the parent is public), the target branch defaults to the forked project's default branch. This prevents potentially exposing the private code of the forked project.
![Selecting branches](img/forking_workflow_branch_select_v15_9.png)
Then you can add labels, a milestone, and assign the merge request to someone who can review
your changes. Then select **Submit merge request** to conclude the process. When successfully merged, your
changes are added to the repository and branch you're merging into.
## Unlink a fork ## Unlink a fork
Removing a fork relationship unlinks your fork from its upstream project. Removing a fork relationship unlinks your fork from its upstream repository.
Your fork then becomes an independent project. Your fork then becomes an independent repository.
Prerequisites: Prerequisites:
...@@ -154,7 +150,7 @@ Prerequisites: ...@@ -154,7 +150,7 @@ Prerequisites:
WARNING: WARNING:
If you remove a fork relationship, you can't send merge requests to the source. If you remove a fork relationship, you can't send merge requests to the source.
If anyone has forked your project, their fork also loses the relationship. If anyone has forked your repository, their fork also loses the relationship.
To restore the fork relationship, [use the API](../../../api/project_forks.md#create-a-fork-relationship-between-projects). To restore the fork relationship, [use the API](../../../api/project_forks.md#create-a-fork-relationship-between-projects).
To remove a fork relationship: To remove a fork relationship:
...@@ -165,15 +161,25 @@ To remove a fork relationship: ...@@ -165,15 +161,25 @@ To remove a fork relationship:
1. In the **Remove fork relationship** section, select **Remove fork relationship**. 1. In the **Remove fork relationship** section, select **Remove fork relationship**.
1. To confirm, enter the project path and select **Confirm**. 1. To confirm, enter the project path and select **Confirm**.
GitLab logs the unlink operation in the [audit log](../../compliance/audit_event_types.md).
When you unlink a fork that uses a [hashed storage pool](../../../administration/repository_storage_paths.md#hashed-object-pools) When you unlink a fork that uses a [hashed storage pool](../../../administration/repository_storage_paths.md#hashed-object-pools)
to share objects with another repository: to share objects with another repository:
- All objects are copied from the pool into your fork. - All objects are copied from the pool into your fork.
- After the copy process completes, no further updates from the storage pool are propagated to your fork. - After the copy process completes, no further updates from the storage pool are propagated to your fork.
## Check a fork's storage usage
Your fork uses a [deduplication strategy](../../../development/git_object_deduplication.md)
to reduce the storage space it needs. Your fork can access the object pool connected to the source repository.
For more information and to check the storage use, see [View project fork storage usage](../../storage_usage_quotas.md#view-project-fork-storage-usage).
## Related topics ## Related topics
- GitLab community forum: [Refreshing a fork](https://forum.gitlab.com/t/refreshing-a-fork/32469) - GitLab community forum: [Refreshing a fork](https://forum.gitlab.com/t/refreshing-a-fork/32469)
- [Prevent project forking outside group](../../group/access_and_permissions.md#prevent-project-forking-outside-group)
- [Understand how Git LFS works with forks](../../../topics/git/lfs/index.md#understand-how-git-lfs-works-with-forks)
## Troubleshooting ## Troubleshooting
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册