.. highlight:: bash .. admonition:: Intended audience :class: important Contributors .. _gitlab-code-submission: Submitting code to SWH ====================== We use `gitlab `__ (`Community Edition `__) as the coding/collaboration forge. For a new contributor --------------------- You will need an account in SWH gitlab for contributing code or documentation. Please follow the steps below to setup your account. - `Signup `__ to create a gitlab account. - Account approve and land is manual and could take a while. Once approved, you will get a notification. - If you are not already, familiarize with `git `__ and `gitlab `__. - Setup `ssh keys `__ to communicate with SWH Gitlab. - Sign the Software Heritage Contributor License Agreement. Please contact us to know more about this. .. _patch-submission: Development workflow -------------------- We use a `fork based workflow `__ and `merge requests `__ for code contributions. In order to submit a feature or for any edits in the code, please adhere to the steps below: - Create a fork of the project you wish to contribute to in your personal namespace. - Clone your forked repository and start working. It is strongly recommended to work on a `feature branch `__. - Make commits following the `SWH best practices `__. - Push your branch to your forked repository. - Create a merge request against the SWH repository. - Make sure the merge request passes the CI build. - Address the review comments, if any, and wait for an approval. - Once approved, a team member will merge your changes to the master branch. Quick start script ------------------ note: If you haven’t done already, setup the swh-environment before this. Refer to the :ref:`getting started ` for details. A `script `__ using `python-gitlab `__ is available to partially automate the above workflow. Using this script is recommended as it simplifies the complexities associated with the build pipelines and multiple remotes. You can use the script by following the steps below: Create an access token with api and write repository scopes `here `__. The script will use this token to create a fork in your namespace and to add jenkins as a user with developer permissions. Create or update the config file :file:`~/.python-gitlab.cfg` and add the following content. .. code-block:: [swh] url = https://gitlab.softwareheritage.org private_token = api_version = 4 In the following command line excerpts, we will use `swh-objstorage `__ as example. Please, replace that with the repository you wish to work with. Run the script by .. code-block:: $ cd swh-environment $ bin/update # Used to update all the repos under the environment to their latest version $ bin/fork-gitlab-repo -g swh swh-objstorage $ bin/fork-gitlab-repo -g swh . # To contribute to swh-environment itself (eg. add a repository) This will create a new fork of the SWH repository in your namespace and add a jenkins user to perform automatic builds. You can view the forked project in your personal projects `here `__. Switch to your local copy that is now ready for code contributions. You can find an extra remote named ‘forked’. This points to your forked repository and that can be used to push your changes. .. code-block:: $ cd swh-objstorage $ git remote -v forked https://gitlab.softwareheritage.org//swh-objstorage.git (fetch) forked git@gitlab.softwareheritage.org://swh-objstorage.git (push) origin https://gitlab.softwareheritage.org/swh/devel/swh-objstorage.git (fetch) origin git@gitlab.softwareheritage.org:/swh/devel/swh-objstorage.git (push) SSH key for pushes ~~~~~~~~~~~~~~~~~~ In your forge User Settings page (on the top right, click on your avatar, then click *Preferences*), you have access to the `SSH Keys section `__. You then have the option to upload a SSH public key, which will authenticate your pushes from git. For more convenience (but not mandatory), you can also configure your ssh/git to use that key pair, for instance by editing the ``~/.ssh/config`` file: .. code-block:: # .ssh/config entry for gitlab.softwareheritage.org Host gitlab.softwareheritage.org User git IdentityFile ~/.ssh/swh_gitlab_key IdentitiesOnly yes PreferredAuthentications publickey Finally, you should configure git to push over ssh when pushing to https://gitlab.softwareheritage.org, by running the following command: .. code-block:: git config --global url.git@gitlab.softwareheritage.org:.pushInsteadOf https://gitlab.softwareheritage.org This lets git know that it should use ``git@gitlab.softwareheritage.org:`` as a base url when pushing repositories cloned from gitlab.softwareheritage.org over https. If you plan to `sign git revisions or tags `__, you may also want to `upload your GPG key `__ as well.