0
We’ve just started working with Gitflow and we’re having a problem that isn’t creating the master tag...
When we will generate a production version (master),
Create a release branch: git flow release start <versao>
We publish it for everyone to have access: git flow release publish <versao>
And finish her off: git flow release finish <versao>
But when we give the finish
, happens this way:
From what I understand, the tag was created on develop
and when I go to Azure DevOps
no tags, no la tag created...
What are we doing wrong? Or what are we missing?
Just for clarification, when finishing the release branch, a merge is performed in both develop and master. That is, the tag is created without any linkage to the branchs. The only thing that occurs is when creating, which is based on the develop.
– Jonathan de Toni