Created
June 16, 2025 19:25
-
-
Save kartben/3360f8cf828411a6d4f02c570fe55600 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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