Jalen: Docs tasks

Familiarize yourself with how GitLab authors documentation

Read the following to become familiar with how technical writing is done at GitLab:

Set up your computer

Now you can start creating small merge requests with doc updates.

Fix these issues

Open MRs for the following issues. Instructions for how to open an MR are just below.

  • first one
  • second one
  • etc

Create a merge request (MR)

You can create an MR many different ways. Some possibilities are:

  • Open a markdown file in the repo and in the top right, select Edit (to edit in the IDE or in the UI).
  • Go to the page on the docs site, scroll to the bottom, and View Page Source. Then Edit in the top right.
  • In your local environment, in the repo you cloned, edit the markdown file. Then:
    1. Create a branch: git checkout -b mybranchname
    2. Add the files you edited: git add .
    3. Add a commit message: git commit -m "My commit message here" (Start with a capital letter, use 3-5 words, do not end in period)
    4. Push to the repo: git push origin mybranchname
    5. After you run this command, follow the URL Git gives you to create the MR.

To get a review, ask the #docs slack channel or assign the MR to a writer by using roulette.

If you're not ready to start making merge requests, you can create a test project and use it to practice.

Edited by Suzanne Selhorn