Re: [PATCH v12 11/11] Documentation: add documentation for 'git interpret-trailers'

2014-07-01 Thread Christian Couder
On Mon, Jun 30, 2014 at 1:57 PM, Jakub Narębski wrote: > Christian Couder wrote: > >> + >> + >> +* Configure a 'sign' trailer with a command to automatically add a >> + 'Signed-off-by: ' with the author information only if there is no >> + 'Signed-off-by: ' already, and show how it w

Re: [PATCH v12 11/11] Documentation: add documentation for 'git interpret-trailers'

2014-06-30 Thread Jakub Narębski
Christian Couder wrote: + + +* Configure a 'sign' trailer with a command to automatically add a + 'Signed-off-by: ' with the author information only if there is no + 'Signed-off-by: ' already, and show how it works: ++ + +$ git config trailer.sign.key "Signed-off-by: "

Re: [PATCH v12 11/11] Documentation: add documentation for 'git interpret-trailers'

2014-06-29 Thread Junio C Hamano
Christian Couder writes: >> While I agree with Michael on the other thread that we should limit >> the syntax and start with ':' only, if you really want to allow >> random syntax like "Bug #12345" and "Acked-by= Peff", for which you >> have demonstrations in the tests in the other patch, the abo

Re: [PATCH v12 11/11] Documentation: add documentation for 'git interpret-trailers'

2014-06-29 Thread Christian Couder
From: Junio C Hamano > Christian Couder writes: > >> +The trailers are recognized in the input message using the following >> +rules: >> + >> +* only lines that contains a ':' (colon) are considered trailers, >> + >> +* the trailer lines must all be next to each other, >> + >> +* after them it'

Re: [PATCH v12 11/11] Documentation: add documentation for 'git interpret-trailers'

2014-05-28 Thread Junio C Hamano
Christian Couder writes: > +trailer..key:: > + This `key` will be used instead of in the > + trailer. After the last alphanumeric character, this variable > + can contain some non alphanumeric characters, like for example > + `'%'` (one percent sign), `' = '` (one space followed

Re: [PATCH v12 11/11] Documentation: add documentation for 'git interpret-trailers'

2014-05-28 Thread Junio C Hamano
Christian Couder writes: > +The trailers are recognized in the input message using the following > +rules: > + > +* only lines that contains a ':' (colon) are considered trailers, > + > +* the trailer lines must all be next to each other, > + > +* after them it's only possible to have some lines

[PATCH v12 11/11] Documentation: add documentation for 'git interpret-trailers'

2014-05-24 Thread Christian Couder
While at it add git-interpret-trailers to "command-list.txt". Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- Documentation/git-interpret-trailers.txt | 264 +++ command-list.txt | 1 + 2 files changed, 265 insertions(+) c