Jonathan Nieder wrote:
quoted hunk ↗ jump to hunk
[...]
+ # Please enter the commit message for your changes. Lines starting
+ # with '\''#'\'' will be kept; you may remove them yourself if you want to.
+ # An empty message aborts the commit.
+ #
+ # Author: A U Thor [off-list ref]
+ #
+ EOF
+ git commit -a --dry-run
+ } >expect &&
+ git commit --cleanup=verbatim -t template -a &&
- git cat-file -p HEAD |sed -e "1,/^\$/d" |head -n 3 >actual &&
+ git cat-file -p HEAD |sed -e "1,/^\$/d" >actual &&
test_cmp expect actual
Quick correction: this would use test_i18ncmp instead of test_cmp if
it ends up being a good idea.