Hi. Is it possible to exclude tagged commits from a revision range? I tried git log --exclude=ref/tags/v* v2.3.0..v2.4.0 but this didn't exclude any commits. An inelegant workaround is: git log --oneline --decorate v2.3.0..v2.4.0 | grep --invert-match "tag: v"