Go to file
Benjamin Dauvergne c1a5ed64be package release 0.3 2018-02-07 22:16:22 +01:00
debian package release 0.3 2018-02-07 22:16:22 +01:00
README rename README.rst to README 2018-01-12 16:59:26 +01:00
git_redmine.py set default retries for requests to 3 as redmine API is a bit unstable 2018-02-07 21:23:36 +01:00
setup.py package release 0.3 2018-02-07 22:16:22 +01:00

README

git-redmine
===========

Redmine integration to git.

Configuration
-------------

Add the following snippet to your .config/git/config file.::

   [redmine]
   url = https://redmine.mycompany.org/
   key = apikey

      OR

   username = username
   password = password

Usage
-----

project
.......

Show the current default project.

project set
...........

Set the current default project for this repository, useful for creating new
issues.::

   git redmine project set myproject-id

issue new
.........

Given a default project, create a new issue, an editor is launched to define
subject and description of the issue.::

  git redmine issue new

issue take
..........

Handle the given issue by creating or switching to a branch named
`wip/<issue-number>-<slugified-issue-subject>` forking from `master`.::

  git redmine issue take 123

issue submit
............

Use `git format-patch` to create the patch serie from `master` and attach it to
the current issue. An editor is launched to add a commment.::

  git redmine issue submit