-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathREADME
29 lines (17 loc) · 795 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Git-Redmine
Git-Redmine is integration tool between Git and Redmine, written in Python.
Install
1. Copy git-redmine into /usr/local/bin or whatever directory which can be executable specified by $PATH variable.
2. Configure API key of your Redmine account. API key is found in account menu in the redmine.
$ git config --global redmine.apiKey xxxxxxxxxxxxxxxxxxxxxxxxxxx
3. Configure Redmine URL of the project.
$ cd /repos/YOUR-PROJECT
$ git config redmine.projectUrl http://SAMPLE.COM/repos/YOUR-PROJECT
Tutorial
* List issues of the Redmine of your project
$ git redmine
* Show details of a issue
$ git redmine 1234
(Note that 1234 is the issue ID, please change it your self)
* Commit using with commit message consist on the issue subject and issue ID
$ git redmine commit 1234