D
D
dmitriy2014-11-25 22:43:47
git
dmitriy, 2014-11-25 22:43:47

Assigning a tag after a hotfix fix is ​​complete?

Using GitFlow in SourceTree, after the hotfix is ​​completed, a label is left with the name of the hotfix. Over time, marks accumulate, which creates inconvenience. What is the purpose of these labels?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Sergey, 2014-11-25
Protko @Fesor

remove the tags...

B
Boris Benkovsky, 2014-11-26
@benbor

The purpose of labels is to capture some state of the code if development continues. For example, a certain lib is being actively developed. And it was decided to change the version from 1.1 to 1.2. In order for users to know how to find version 1.1, the developers mark the latest commit of this version as v1.1 and continue working on version 1.2. When a library user wants version 1.1, he will use the command

git checkout v1.1
and he will be happy.
That's why tags are needed in the git.
And with your problem, use the advice Sergey Protko

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question