Here's a handy snippet to show only v1.3, v2.1 out of a range like v1.0, v1.1, v1.2, v1.3, v2.0, v2.1: git tag -l "v*.*.*" --sort=-v:refname | awk -F. '!seen[$1,$2]++' (Input does not have to come from git, it can be any newline-delimited list of ve…