Question

I am using git flow and the release functionality. It is generally working but I am not seeing any tags created for each release. Is that expected? If so, does anyone have a suggestion for the best way to create a git tag for each git flow release?

Était-ce utile?

La solution

When you finish a release, it merges the release branch back into master, and tags the release with its name:

`git flow release finish RELEASE`

If you want to push your tags to a remote master, you'll need to use:

`git push --tags remote BRANCH`

Related: git-flow cheatsheet

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top