On Mon, Apr 7, 2014 at 8:05 PM, Kevin Sweeney <kevi...@apache.org> wrote:
> > If I create a tag when .auroraversion is updated to a new -snapshot on > master like so (we haven't had a release yet but assume I did this during > the release of 0.4.0): > > % git tag -a -m 'Create 0.5.0-snapshot' 0.5.0-snapshot > 19e087509cfd6c86c9928ca6c8e8b40068a64f39 > What is the point of the "-snapshot" in the tag name? The linux kernel does this: $ git tag -l |grep 3.14 v3.14 v3.14-rc1 v3.14-rc2 v3.14-rc3 v3.14-rc4 v3.14-rc5 v3.14-rc6 v3.14-rc7 v3.14-rc8 $ git describe v3.14-12236-g39de65a Git itself follows that same pattern: $ git tag -l |grep 1.9 v1.9-rc0 v1.9-rc1 v1.9-rc2 v1.9.0 v1.9.0-rc3 v1.9.1 $ git describe v1.9.1-506-g7bf272c