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?

link|improve this question

feedback

8 Answers

up vote 13 down vote accepted

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.

  1. When tagging releases in a version control system, the tag for a version MUST be "vX.Y.Z" e.g. "v3.1.0".
link|improve this answer
Thanks - That's very close. I wish he would have qualified why the v should be there though. – troelskn Jan 6 '10 at 9:25
I see someone else had the same thought: github.com/mojombo/semver.org/issues/unreads#issue/1 – troelskn Jan 6 '10 at 9:28
1  
@troelskn @mojombo == Tom Preston-Werner – peritus Jan 6 '10 at 10:27
1  
Updated link: github.com/mojombo/semver.org/issues/1 – Josh Lee May 4 '11 at 16:15
feedback

There appear to be two dominating conventions (assuming you also abide by some reasonable standard for numbering the releases themselves):

  • v1.2.3
  • 1.2.3

The advantages of v1.2.3 are that the Git documentation (and also the Mercurial documentation) uses that format in its examples, and that several "authorities" such as the Linux kernel, Git itself, and the mentioned Semantic Versioning use it.

The advantages of 1.2.3 are that gitweb or GitHub can automatically offer a tarball or zip download of the form packagename-$tag.tar.gz (and I think it's quite established that a tarball should not be named package-v1.2.3.tar.gz). Alternatively, you can use git describe directly to generate tarball version numbers. For lightweight projects without a formal release process, these possibilities can be quite convenient. It should also be noted that Semantic Versioning is by no means the only or a universally accepted standard for version numbering. And notable projects such as GNOME as well as countless other projects do use the 1.2.3 tag naming.

I think it's probably too late to consolidate these positions. As always, be consistent and make sense.

link|improve this answer
Nice, interesting points – MestreLion May 12 at 12:07
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.

link|improve this answer
1  
+1: Good first answer and a name from one of my favourite books :-) Perhaps your next answer will be on a more current question, though. – Johnsyweb Jun 8 '11 at 12:58
... but if this is only true for older SVCS, what if the point of this answer for a question about modern Git? – MestreLion May 12 at 12:09
feedback

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
link|improve this answer
Thanks - that's a good answer for describing how you do branching, but I actually just meant if there were some specific (technical) reason for using a certain naming scheme in git. Still giving you an upvote for the nice diagrams though ;) – troelskn Jan 5 '10 at 18:52
Ah, gotcha! Sorry for misunderstanding your question. No, there's no specific technical reason for using a particular name, other than human communication. You can name your branches and tags pretty much whatever you like. – John Feminella Jan 5 '10 at 19:37
feedback

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"

link|improve this answer
feedback

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.

link|improve this answer
feedback

The version tag specification is defined in http://semver.org/

link|improve this answer
feedback

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)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.