On Thu, Jun 25, 2015 at 5:43 AM, Christian Couder
[off-list ref] wrote:
You can use a commit template.
Or you can use the "commit-msg" hook. For example with commands like:
grep "^Signed-off-by:" "$1" ||
echo "Signed-off-by: $(git config user.name) <$(git config user.email)>" >>"$1"
If you have more complex needs, there is also "git interpret-trailers"
(see the examples in the man page).
Thanks for the references. I was initially using a commit template to solve
the problem. But I've considered that since we already handle
"Signed-off-by" somewhat specially (e.g. "commit -s"), and how common this
case is, it was worth adding a config option.
--
Caio Marcelo de Oliveira Filho