Hi.
I've seen a lot of projects using v1.2.3
as the naming convention for tags in git. I've also seen some use 1.2.3
. Is there an officially endorsed style, or are there any good arguments for using either?
Hi.
I've seen a lot of projects using v1.2.3
as the naming convention for tags in git. I've also seen some use 1.2.3
. Is there an officially endorsed style, or are there any good arguments for using either?
Not that I know of.
But Git will not allow a tag and a branch of the same name at the same time, so if you have a branch "1.1
" for 1.1
works, do not put a tag "1.1
", use for instance "v1.1
"
There is no one best practice I'm aware of. Here are some links:
Generally, versioning (0.0.1
, v0.2.1
, ...) maybe hand in hand with some issue-tracking could be considered a plausible approach. (.. although I usually use v
-prefixed tag names .. see also @VonC answer)
We use branches and tags for release-specific work followed by the actual release, respectively:
o---o-----o---o---o--- ... master
\ / /
\ / /
o-------o--- ... 1.6 branch
Every developer makes a mental decision about whether the work they're about to commit is applicable just to master or if it's also relevant to the branch. You can see that changes that are made to the branch are merged back on master, but some changes on master will never go on the branch (that is, those not intended for the 1.6 release, in this example).
When we're ready to release, we tag it and then merge back one last time, and we name the tag with the same name as the branch, but with an extra identifier about what particular version it is, e.g. "1.6-release" or "1.6-beta" or "1.6-rc2", et cetera.
... ------o---o---o--o---o--- ... master
/ /
/ /
... ---o------(*)--- ... 1.6 branch
1.6-release
I don't know of any standards. I simply choose my tag names such that I can stick a
VERSION = `git describe`
in my build scripts. So, the tag naming convention actually depends on the version naming convention of the project.
There is Semantic Versioning, by Tom Preston-Werner of github fame:
Tagging Specification (SemVerTag)
This sub-specification SHOULD be used if you use a version control system (Git, Mercurial, SVN, etc) to store your code. Using this system allows automated tools to inspect your package and determine SemVer compliance and released versions.
- When tagging releases in a version control system, the tag for a version MUST be "vX.Y.Z" e.g. "v3.1.0".