blob: 39fd77176d7022a7297b9a3c6891e4446cce7c49 [file] [log] [blame] [edit]
#!/bin/sh
: ${asof=${1-now}}
: ${lasttag=${2-$(
git tag --list 'v*.0' --sort=version:tag | tail -n 1
)}}
for r in "$lasttag..master@{$asof}" \
"master@{$asof}..next@{$asof}" \
"master@{$asof}..seen@{$asof}"
do
echo "$r $(git rev-list --count --no-merges $r)"
done