Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git flow release tag

I started using git flow to manage code for a medium sized project at work, I used the default for branches names and tag. I would like to know if it is possible to change the tag prefix, I have already look for a bit on google but all answers are related to the branches names not the releases tags.

like image 734
Jesus Urquizo Avatar asked Nov 25 '25 19:11

Jesus Urquizo


1 Answers

You have gitflow.prefix.versiontag to set it.

For example to prefix with v, just use

git config gitflow.prefix.versiontag v
like image 150
Ôrel Avatar answered Nov 27 '25 08:11

Ôrel