<div dir="ltr">Thanks for the heads-up.<div><br></div><div>Honestly, I had just been trying the default "git fetch" for a month or so.  I guess I had never considered that "git fetch --tags" would give me anything more, as all projects I've worked on fetch tags by default.  This is a little bit new for me, but it means that I learned something, which is good.  The even better news is that it worked.</div><div><br></div><div>I looked into why this happened to me a little bit, and the default behavior of the git repository seems to be to pull down the tags on an initial clone, but afterwards to only pull down the tags if passed the "--tags" parameter as was mentioned.</div><div><br></div><div>By running git config --list, I see this:</div><div>remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*<br></div><div>The default behavior is not to include tags, which would lead to the behavior that I saw.</div><div>I would suggest adding the below line to the default config:</div><div>remote.origin.fetch=+refs/tags/*:refs/tags/origin/*</div><div><br></div><div>I know that I'm talking about a git mirror in this case, so that may be beyond the scope of this mail-list. Do the hosts of the mirror have their own contact information?  I'm curious if they would consider making this small change-- they may, but then again, they may not.  I figure it doesn't hurt to ask, since it did trip me up.</div><div><br></div><div>Thanks,</div><div>  -John</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Nov 6, 2015 at 3:53 AM, Sandro Santilli <span dir="ltr"><<a href="mailto:strk@keybit.net" target="_blank">strk@keybit.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Thu, Nov 05, 2015 at 05:08:39PM -0500, John Harvey wrote:<br>
> Hello,<br>
><br>
> I noticed that when 2.2.0 was released, there was a source tarball created<br>
> and a branch was made, but I couldn't find a tag that indicates which<br>
> specific commit is tied to the release itself.  My current process it to<br>
> clone the code with git, checkout the latest tag available, and then build<br>
> with it.  As of now, there are no 2.2.x tags in the repository.<br>
<br>
</span>I confirm the official repository is the SVN one, anyway tags should<br>
be also mirrored. Did you git fetch --tags ?<br>
<br>
--strk;<br>
<div class="HOEnZb"><div class="h5">_______________________________________________<br>
postgis-devel mailing list<br>
<a href="mailto:postgis-devel@lists.osgeo.org">postgis-devel@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/postgis-devel" rel="noreferrer" target="_blank">http://lists.osgeo.org/mailman/listinfo/postgis-devel</a></div></div></blockquote></div><br></div>