wx7614140 / redmine_gitlab_hook

This plugin allows you to update your local Git repositories in Redmine when changes have been pushed to GitLab.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Redmine GitLab Hook

This plugin allows you to update your local Git repositories in Redmine when changes have been pushed to GitLab.

Description

Redmine redmine.org has supported Git repositories for a long time, allowing you to browse your code and view your changesets directly in Redmine. For this purpose, Redmine relies on local clones of the Git repositories.

If your shared repository is on a remote machine - for example on GitLab - this unfortunately means a bit of legwork to keep the local, Redmine-accessible repository up-to-date. The common approach is to set up a cronjob that pulls in any changes with regular intervals and updates Redmine with them.

That approach works perfectly fine, but is a bit heavy-handed and cumbersome. The Redmine GitLab Hook plugin allows GitLab to notify your Redmine installation when changes have been pushed to a repository, triggering an update of your local repository and Redmine data only when it is actually necessary.

Installation

  1. Installing the plugin

    1. Follow the plugin installation procedure at www.redmine.org/wiki/redmine/Plugins.

    2. Restart your Redmine.

    3. If you already have a local Git repository set up and working from Redmine go to step 3, otherwise continue at step 2.

  2. Adding a Git repository to a project (note, this should work whether you want to use Redmine GitLab Hook or not). Simply follow the instructions at www.redmine.org/wiki/redmine/HowTo_keep_in_sync_your_git_repository_for_redmine . If the repository was cloned with “clone –mirror” please turn on the option “all_branches” in the plugin config page!

  3. Restart Redmine

  4. GitLab

    1. Go to the repository interface on GitLab.

    2. Under “Web Hooks” add a new “Post-Receive URL” of the format:

    Example:

    redmine.example.com/gitlab_hook?project_id=test_project&key=j2g7kds9341hj6sdk

    That’s it. GitLab will now send a HTTP POST to the Redmine GitLab Hook plugin whenever changes are pushed to GitLab. The plugin then takes care of pulling the changes to the local repository and updating the Redmine database with them.

Debug

To debug the API interface of redmine_gitlab_hook try out RESTClient (restclient.net) a nice add-on for Chrome, Firefox and Safari. Please keep in mind, that the request method must be of type POST!

Assumptions

  • GitLab >= 5.x

  • Redmine 2.x running on a *nix-like system. Older versions of redmine will not work.

  • Git 1.7.10 or higher available on the commandline. Also supports Git 1.8 repositories which are mirrored with the new “clone –mirror” command (default: off, please turn on in options when new mirror command was used).

About

This plugin allows you to update your local Git repositories in Redmine when changes have been pushed to GitLab.

License:MIT License


Languages

Language:Ruby 88.6%Language:HTML 11.4%