-
-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add option to sort by commit date #197
Comments
I'm trying to think of a reason as to why you would ever want to sort your releases by |
To show backports. I often release v2, and then later backport a v1.x patch. |
Ah, true, but then |
In my project, To show both snapshots and releases.
I didn't know |
I think an option to sort by git --sort option is good to support wide-range of usages. |
Currently, versions are sorted by semver or string comparison but I want to sort by commit date.
We can get sorted tag list by
git tag -l --sort=-committerdate
.The text was updated successfully, but these errors were encountered: