--- stage: Create group: Code Review info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments type: reference, howto --- # Allow collaboration on merge requests across forks **(FREE)** > [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/17395) in GitLab 10.6. When a user opens a merge request from a fork, they are given the option to allow upstream members to collaborate with them on the source branch. This allows the members of the upstream project to make small fixes or rebase branches before merging, reducing the back and forth of accepting external contributions. This feature is available for merge requests across forked projects that are publicly accessible. When enabled for a merge request, members with merge access to the target branch of the project is granted write permissions to the source branch of the merge request. ## Enabling commit edits from upstream members In [GitLab 13.7 and later](https://gitlab.com/gitlab-org/gitlab/-/issues/23308), this setting is enabled by default. It can be changed by users with Developer permissions to the source project. Once enabled, upstream members can retry the pipelines and jobs of the merge request: 1. While creating or editing a merge request, select the checkbox **Allow commits from members who can merge to the target branch**. ![Enable contribution](img/allow_collaboration.png) 1. Once the merge request is created, you can see that commits from members who can merge to the target branch are allowed. ![Check that contribution is enabled](img/allow_collaboration_after_save.png) ## Pushing to the fork as the upstream member If the creator of the merge request has enabled contributions from upstream members, you can push directly to the branch of the forked repository. Assuming that: - The forked project URL is `git@gitlab.com:thedude/awesome-project.git`. - The branch of the merge request is `update-docs`. Here's how the process would look like: 1. First, you need to get the changes that the merge request has introduced. Click the **Check out branch** button that has some pre-populated commands that you can run. ![Check out branch button](img/checkout_button.png) 1. Use the copy button to copy the first command and paste them in your terminal: ```shell git fetch git@gitlab.com:thedude/awesome-project.git update-docs git checkout -b thedude-awesome-project-update-docs FETCH_HEAD ``` This fetches the branch of the forked project and then create a local branch based off the fetched branch. 1. Make any changes you want and commit. 1. Push to the forked project: ```shell git push git@gitlab.com:thedude/awesome-project.git thedude-awesome-project-update-docs:update-docs ``` Note the colon (`:`) between the two branches. The above command pushes the local branch `thedude-awesome-project-update-docs` to the `update-docs` branch of the `git@gitlab.com:thedude/awesome-project.git` repository. ## Troubleshooting ### Pipeline status unavailable from MR page of forked project When a user forks a project, the permissions on the forked copy are not copied over from the original project. The creator of the fork must grant permissions to the forked copy before members in the upstream project can view or merge the changes in the merge request. To see the pipeline status from the merge request page of a forked project going back to the original project: 1. Create a group containing all the upstream members. 1. Go to the **Members** tab in the forked project and invite the newly-created group to the forked project.