issac.tro...@gmail.com writes: > From: Issac Trotts <issac.tro...@gmail.com>
I think you want to have From: Issac Trotts <issactro...@google.com> instead, so that the authorship actually matches your sign-off. > - if (source) { > + if (source || (rev->pretty_given && (rev->commit_format == > CMIT_FMT_USERFORMAT) && w.source)) { I am not sure why the above is not simply if (source || w.source) { but needs to check pretty-given etc. Care to explain why? Thanks.