X
X
XY2019-01-27 00:28:15
git
XY, 2019-01-27 00:28:15

How to release with hotfix?

I have a project where version tags are affixed as follows: major_version.minor_version.fix
The problem is that there can be many fixes (especially for documentation) and for this reason, the list of version tags on github will grow.
Is there an option in git (or on github) to display only major and minor version tags with the latest fix?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Arthur K., 2019-01-27
@amark

Are tags set manually? or automatically?
At first glance it looks like a question about git flow. And for example, here is the answer .
If the thought is in your own words, hotfix should be merged both into the master and into the current dev branch. Accordingly, you will change the version the same way when you need versioning in order.

V
Vitsliputsli, 2019-01-27
@Vitsliputsli

A more detailed description of the purpose of such a Wishlist would be very helpful. If a large number of tags interferes, then do not install them at all, and pull the latest version by the branch name, not the tag. Or delete tags that have become unnecessary.

J
jcmvbkbc, 2019-01-27
@jcmvbkbc

Is there an option in git (or on github) to display only major and minor version tags with the latest fix?

The tag is just a line, the meaning is put into it by the user.
git tagcan display tags by mask with key -l.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question