Connecting gitlab to redmine

Connecting gitlab to a redmine ticket-management server. Why? Because their ticket management is slightly better.

Published

June 10, 2024

In this blog post, I tell you how to connect:

Our objective was to create a system so that redmine tickets can be linked to the code commits addressing them.

In our current workflow, we follow these steps:

1 Gitlab to redmine connection

The connection from gitlab to redmine is minimalist and straightforward to setup.

Normally, gitlab provides automated functionality to parse patterns of the form #ID (where ID is an integer) in any text block on the site. When this pattern is identified, it is linked to the gitlab issue with the same number. We wanted to use redmine as an issue tracker instead of gitlab. Gitlab provides a simple way to do so.

2 Redmine to git connection

Things will now get trickier. We cannot directly connect redmine to gitlab. Instead, we will connect redmine to git. This will make git commit messages visible on redmine.

Once git commit messages are visible on redmine, you can choose patterns to automatically link a specific commit to a redmine work item. Commits can also be manually linked to a work item, via the web interface.

Annoyingly, redmine only refreshes which commits the web server is aware of when somebody visits the repository page on its web interface.

  • On the machine hosting your redmine instance:

    1. Authentify as www-data user: sudo -su www-data (or whichever user is used by your redmine installation).
    2. Create a folder to host repositories. For example: /var/www/repos.
    3. Create a method to authenticate this machine on your gitlab server. For example, you can create a new user:
      1. Create a new gitlab user for your redmine machine.
      2. Create a ssh key: ssh-keygen -t ed25519; note save location.
      3. Copy ssh key: cat PATH/TO/id_ed25519.pub.
      4. Save ssh key in gitlab user preferences.
    4. Clone project with mirror option: git clone --mirror SSH_CLONE_ADDRESS.
    5. Create a cron task to fetch all repositories:
      1. ⚠️ You only need to do this once. ⚠️

      2. Create a script to fetch all repositories: nano git_fetch_all.sh

        #!/bin/sh
        echo "Starting fetch script"
        for dir in $(ls -d /var/www/repos/*/); do
            echo "fetching $dir" && cd "$dir" && git fetch -q --all -p && cd ..
        done
        echo "Fetch script done"
      3. Create a cron task to run the script:

        1. Open cron edit: crontab -u www-data -e.
        2. Add a new line: */1 * * * * (sh /var/www/repos/git_fetch_all.sh) > /var/www/repos/log.
  • On the redmine web interface:

    1. In the global settings:

      1. In tab repositories, select git as enabled scm.
      2. Change referencing keywords to: *.
    2. In the target project:

      1. In settings, open repositories tab.
      2. Add new repository with path /var/www/repos/PROJECT_NAME.git.
  • Debug:

    1. If redmine reports a 404 error, check paths.

    2. If redmine reports a 403 error, check ownership of all folders.

    3. If the repositories do not update on the machine:

      1. Check that the script runs correctly.
      2. Check that the cron task is correctly set for the www-data user.
    4. If the commits do not update in work items:

      1. redmine only refreshes which commits the web server is aware of when somebody visits the repository page on its web interface. Check on the specific page corresponding to the repository where the commit has been added.

3 Gitlab connection

We can now connect gitlab to redmine by writing information about gitlab into git commit messages. Whenever we accept a merge request on gitlab, a merge request commit and, optionally, a squash commit are created. We can customize the commit messages for both to link these commits to redmine issues. By default, the commit messages reproduce the description of the merge request, but additional information can be added.

  • Make a habit of mentionning in the merge request description which redmine items are concerned with the #ID syntax.
  • For each repository, write a custom commit message template to include the information you wish to be present on redmine.
Back to top