You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The current ugit method to undo_git_tag() calls git tag. This presents the tags in a string sort order that looks incorrectly sorted with numeric tags. For instance:
v1.0
v1.1
v1.10
v1.11
v1.2
v1.3
v1.4
etc.
Describe the solution you'd like
Use git tag --sort=v:refname to present tags in correct order:
v1.0
v1.2
v1.3
v1.4
v1.10
v1.11
etc.
Describe alternatives you've considered
You could create your own sorting method, but why?
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The current ugit method to undo_git_tag() calls
git tag
. This presents the tags in a string sort order that looks incorrectly sorted with numeric tags. For instance:v1.0
v1.1
v1.10
v1.11
v1.2
v1.3
v1.4
etc.
Describe the solution you'd like
Use
git tag --sort=v:refname
to present tags in correct order:v1.0
v1.2
v1.3
v1.4
v1.10
v1.11
etc.
Describe alternatives you've considered
You could create your own sorting method, but why?
The text was updated successfully, but these errors were encountered: