I'm using git am to apply patches, and I like the ability to add arbitrary trailers instead of the standard Signed-off-by one. To this end, I have extended git am to call git interpret-trailers internally. This way I can add arbitrary signatures. For example, I have: [trailer "t"] key = Tested-by command = "echo \"Michael S. Tsirkin <mst@xxxxxxxxxx>\"" [trailer "r"] key = Reviewed-by command = "echo \"Michael S. Tsirkin <mst@xxxxxxxxxx>\"" [trailer "a"] key = Acked-by command = "echo \"Michael S. Tsirkin <mst@xxxxxxxxxx>\"" [trailer "s"] key = Signed-off-by command = "echo \"Michael S. Tsirkin <mst@xxxxxxxxxx>\"" And now: git am -t t -t r -t s adds all of: Tested-by: Michael S. Tsirkin <mst@xxxxxxxxxx> Reviewed-by: Michael S. Tsirkin <mst@xxxxxxxxxx> Signed-off-by: Michael S. Tsirkin <mst@xxxxxxxxxx> This was originally suggested by Junio (a long time ago). Documentation and tests are still TBD. Michael S. Tsirkin (4): builtin/interpret-trailers.c: allow -t builtin/interpret-trailers: suppress blank line builtin/am: read mailinfo from file builtin/am: passthrough -t and --trailer flags trailer.h | 2 +- builtin/am.c | 57 +++++++++++++++++++++++++++++++++++++++++++- builtin/interpret-trailers.c | 11 ++++++--- trailer.c | 10 +++++--- 4 files changed, 72 insertions(+), 8 deletions(-) -- MST -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html