-
I'm looking at gitversion and trying to understand how to best make use of it. It seems to me like using the fact that a feature/ or bugfix/ branch has been merged could also be a strategy? I'd be interested to know whether that's a sensible idea or not as it would perhaps clarify whether my understanding of how it works is correct or not. On the face of it, gitversion seems simple, but the more I dig the more subtlety I find in terms of how to make effective use of it. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Yes, using merge commits works. But I would recommend using |
Beta Was this translation helpful? Give feedback.
Actually it depends on your branching and merging strategy. Like @asbjornu says there are different motivation creating tags:
You could automate this as well. As soon you are moving the package via ci or deployment pipeline you are going to create a tag with a script. Why do you think it…