Re: [PATCH v6 04/11] trailer: process command line trailer arguments

2014-03-05 Thread Junio C Hamano
Christian Couder chrisc...@tuxfamily.org writes: diff --git a/trailer.c b/trailer.c index 5b8e28b..5d69c00 100644 --- a/trailer.c +++ b/trailer.c @@ -378,3 +378,96 @@ static int git_trailer_config(const char *conf_key, const char *value, void *cb) ... +static struct trailer_item

[PATCH v6 04/11] trailer: process command line trailer arguments

2014-03-04 Thread Christian Couder
Parse the trailer command line arguments and put the result into an arg_tok doubly linked list. Signed-off-by: Christian Couder chrisc...@tuxfamily.org --- trailer.c | 93 +++ 1 file changed, 93 insertions(+) diff --git a/trailer.c