Git Flow - Not creating the tag in master

Asked

Viewed 89 times

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: inserir a descrição da imagem aqui

From what I understand, the tag was created on develop and when I go to Azure DevOps no tags, no la tag created... inserir a descrição da imagem aqui

What are we doing wrong? Or what are we missing?

  • 1

    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.

1 answer

2


To send a tag, you need to push it. Just use the git push with the instruction --tags:

git push origin --tags

Or else:

git push origin nome-tag
  • 1

    with the git push --tags worked

Browser other questions tagged

You are not signed in. Login or sign up in order to post.