On Sat, 19 Jan 2019 at 16:46, Martin Ågren <[email protected]> wrote:
> # commit.gpgsign is still on but this must not be signed
> - git tag ninth-unsigned $(echo 9 | git commit-tree HEAD^{tree}) &&
> + echo 9 | git commit-tree HEAD^{tree} >oid &&
> + test_line_count = 1 oid &&
> + git tag ninth-unsigned $(cat oid) &&
> # explicit -S of course must sign.
> - git tag tenth-signed $(echo 9 | git commit-tree -S HEAD^{tree})
> + echo 10 | git commit-tree -S HEAD^{tree} >oid &&
> + test_line_count = 1 oid &&
> + git tag tenth-signed $(cat oid)
> '
Or, a bit simpler:
oid=$(echo 10 | git commit-tree -S HEAD^{tree}) &&
git tag tenth-signed "$oid"
Martin