On Mon, Mar 15, 2021 at 10:08 AM ZheNing Hu via GitGitGadget <gitgitgadget@xxxxxxxxx> wrote: > + if (trailer_args.nr) { > -+ static struct child_process run_trailer = CHILD_PROCESS_INIT; > ++ struct child_process run_trailer = CHILD_PROCESS_INIT; > + > + strvec_pushl(&run_trailer.args, "interpret-trailers", > + "--in-place", "--where=end", git_path_commit_editmsg(), NULL); Actually I don't think "--where=end" should be used here. "end" is the default for the "trailer.where" config variable, so by default if nothing has been configured, it will work as if "--where=end" was passed above. If a user has configured "trailer.where" or trailer.<token>.where, then this should be respected. And users should be able to override such config variable using for example: git -c trailer.where=start commit --trailer "Signed-off-by:C O Mitter <committer@xxxxxxxxxxx>"