I have several commits, but once I release I'd like to associate a tag to it.
I know the relevant commands are commit
, tag
and push
.
In which order should I do it - so that the last or the one I'm about to do is associated with the tag I'm about to push?
Would it be git commit
, then git tag
and then git push
?