update README

This commit is contained in:
Benjamin Dauvergne 2018-02-07 22:44:10 +01:00
parent e75a1e7b79
commit cf2b250dce
1 changed files with 32 additions and 0 deletions

32
README
View File

@ -49,6 +49,19 @@ Handle the given issue by creating or switching to a branch named
git redmine issue take 123
It will propose applying patches attached to the issue.
issue show
..........
Show information about the current issue.::
git redmine issue show
Show informations about issue 9999.::
git redmine issue show --issue 9999
issue submit
............
@ -56,3 +69,22 @@ 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
To submit only the last commit::
git redmine issue submit 1
To submit the last commit to issue 9999::
git redmine issue submit --issue 9999 1
issue apply
...........
Apply patches attached to the current issue.::
git redmine issue apply
Apply patched atteched to issue 9999.::
git redmine issue apply --issue 9999