From 3ee7fa9e5805dd1e854ecf95d7643bdb7d6bc70e Mon Sep 17 00:00:00 2001 From: Lee Tickett <ltickett@gitlab.com> Date: Mon, 13 Mar 2023 16:11:55 +0000 Subject: [PATCH] Suggest GitLab community fork --- doc/development/contributing/index.md | 8 ++++---- .../contributing/merge_request_workflow.md | 11 +++++++---- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/doc/development/contributing/index.md b/doc/development/contributing/index.md index cf10a10611987..6a9dd34e70348 100644 --- a/doc/development/contributing/index.md +++ b/doc/development/contributing/index.md @@ -49,11 +49,11 @@ If you would like to contribute to GitLab: The general flow of contributing to GitLab is: -1. [Create a fork](../../user/project/repository/forking_workflow.md#creating-a-fork) - of GitLab. In some cases, you will want to set up the +1. [Read about](https://gitlab.com/gitlab-community/meta) and [request access](https://gitlab.com/gitlab-community/meta#request-access-to-community-forks) + to the GitLab Community forks. In some cases, you will want to set up the [GitLab Development Kit](https://gitlab.com/gitlab-org/gitlab-development-kit) to - [develop against your fork](https://gitlab.com/gitlab-org/gitlab-development-kit/-/blob/main/doc/index.md#develop-in-your-own-gitlab-fork). -1. Make your changes in your fork. + [develop against the GitLab community fork](https://gitlab.com/gitlab-org/gitlab-development-kit/-/blob/main/doc/index.md#develop-in-your-own-gitlab-fork). +1. Create a feature branch and make changes in the [GitLab community fork](https://gitlab.com/gitlab-community/gitlab). 1. When you're ready, [create a new merge request](../../user/project/merge_requests/creating_merge_requests.md). 1. In the merge request's description: - Ensure you provide complete and accurate information. diff --git a/doc/development/contributing/merge_request_workflow.md b/doc/development/contributing/merge_request_workflow.md index c9866131cc7ea..e384b41f6f2e6 100644 --- a/doc/development/contributing/merge_request_workflow.md +++ b/doc/development/contributing/merge_request_workflow.md @@ -80,12 +80,15 @@ intent behind your changes can also help expedite merge request reviews. To create a merge request: -1. [Fork](../../user/project/repository/forking_workflow.md) the project into - your personal namespace (or group) on GitLab.com. -1. Create a feature branch in your fork (don't work off your [default branch](../../user/project/repository/branches/default.md)). +1. [Read about](https://gitlab.com/gitlab-community/meta) and [request access](https://gitlab.com/gitlab-community/meta#request-access-to-community-forks) + to the GitLab Community forks. In some cases, you will want to set up the + [GitLab Development Kit](https://gitlab.com/gitlab-org/gitlab-development-kit) to + [develop against the GitLab community fork](https://gitlab.com/gitlab-org/gitlab-development-kit/-/blob/main/doc/index.md#develop-in-your-own-gitlab-fork). +1. Create a feature branch in the [GitLab community fork](https://gitlab.com/gitlab-community/gitlab) + (don't work off the [default branch](../../user/project/repository/branches/default.md)). 1. Follow the [commit messages guidelines](#commit-messages-guidelines). 1. If you have multiple commits, combine them into a few logically organized commits. -1. Push the commits to your working branch in your fork. +1. Push the commits to your working branch in the fork. 1. Submit a merge request (MR) against the default branch of the upstream project. 1. The MR title should describe the change you want to make. 1. The MR description should give a reason for your change. -- GitLab