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?
|
feedback
|
|
There is Semantic Versioning, by Tom Preston-Werner of github fame:
| |||||||||||||
feedback
|
|
There appear to be two dominating conventions (assuming you also abide by some reasonable standard for numbering the releases themselves):
The advantages of The advantages of I think it's probably too late to consolidate these positions. As always, be consistent and make sense. | |||
|
feedback
|
|
The reason for the preceding 'v' is historical. Older SCCS (cvs,rcs) could not distinguish between a tag identifier and a revision number. Tag identifiers were restricted to not begin with a numeric value so that revision numbers could be detected. | |||||||
feedback
|
|
We use branches and tags for release-specific work followed by the actual release, respectively:
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.
| |||||
feedback
|
|
Not that I know of. | |||
|
feedback
|
|
I don't know of any standards. I simply choose my tag names such that I can stick a
in my build scripts. So, the tag naming convention actually depends on the version naming convention of the project. | |||
|
feedback
|
|
The version tag specification is defined in http://semver.org/ | |||
|
feedback
|
|
There is no one best practice I'm aware of. Here are some links:
Generally, versioning ( | ||||
|
feedback
|