Skip to content

Instantly share code, notes, and snippets.

@kartben
Created June 16, 2025 19:25
Show Gist options
  • Save kartben/3360f8cf828411a6d4f02c570fe55600 to your computer and use it in GitHub Desktop.
Save kartben/3360f8cf828411a6d4f02c570fe55600 to your computer and use it in GitHub Desktop.
echo "Zephyr commits between versions:"
git rev-list --count v3.0.0..v3.1.0 | xargs echo "v3.0.0 -> v3.1.0:"
git rev-list --count v3.1.0..v3.2.0 | xargs echo "v3.1.0 -> v3.2.0:"
git rev-list --count v3.2.0..v3.3.0 | xargs echo "v3.2.0 -> v3.3.0:"
git rev-list --count v3.3.0..v3.4.0 | xargs echo "v3.3.0 -> v3.4.0:"
git rev-list --count v3.4.0..v3.5.0 | xargs echo "v3.4.0 -> v3.5.0:"
git rev-list --count v3.5.0..v3.6.0 | xargs echo "v3.5.0 -> v3.6.0:"
git rev-list --count v3.6.0..v3.7.0 | xargs echo "v3.6.0 -> v3.7.0:"
git rev-list --count v3.7.0..v4.0.0 | xargs echo "v3.7.0 -> v4.0.0:"
git rev-list --count v4.0.0..v4.1.0 | xargs echo "v4.0.0 -> v4.1.0:"
git rev-list --count v4.1.0..HEAD | xargs echo "v4.1.0 -> HEAD :"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment