Re: [PATCH v4] git-rebase--interactive.sh: add config option for custom instruction format
From: Junio C Hamano <hidden> Date: 2016-06-15 23:05:17
Mike Rappazzo [off-list ref] writes:
In the second loop, I changed it to recalculate the presented message
when the re-ordered commit is added:
+ if test -n "${format}"
+ then
+ msg_content=$(git log -n 1 --format="${format}" ${squash})
That is the "$rest".
Ahh, yeah, I missed that --format=${format} thing.
Thanks.