<div dir="ltr">Hi strk,<div><br></div><div>Thanks for the fix!  It is definitely cleaner now (I can confirm that the quote marks are gone).</div><div><br></div><div>Unfortunately, I've found a secondary issue.</div><div>Some tags have now moved with the new method of tagging.</div><div><br></div><div>Below is the complete list of tags that have moved:</div><div><br></div><div><div>refs/tags/2.0.3:</div><div>from 02d28254bf3437a13be5cbab9012302684794572</div><div>to   a3b3de2840ed773a9cd5fc2d7575a0b0cedacb08</div><div><br></div><div>refs/tags/2.1.0beta1:</div><div>from dd1d97cd2c2bd53b1ccacf122f35121196b9889d</div><div>to   d80c727c9748d04bc7027dede60137c5656ed909</div><div><br></div><div>refs/tags/2.1.3:</div><div>from f3ec236dca1151b756a1b9bdbe8256f07595c01c</div><div>to   9e63c55cc0968b991c8893f086c4bb7e81133ffb</div><div><br></div><div>refs/tags/2.1.6:</div><div>from 4771ab13d58bf41cffbe4f25b951278dc2de90fd</div><div>to   5bf45bc83b5b5e01afc8022d229d8f6987ef1226</div><div><br></div><div>refs/tags/2.1.7:</div><div>from 719d4afebe6d735fa080c98ecc83cafccddea3d8</div><div>to   478b1f9267fbec154b681bb740774c44bd20662e</div><div><br></div><div>refs/tags/2.2.0:</div><div>from 142fe43e2c73af4cdf0fcfe3d3f4cf335fc91047</div><div>to   04baae8928e98e2efab49b2b5d9662c0b2b3739e</div><div><br></div><div>refs/tags/2.2.0rc1:</div><div>from b9fbdaeb2b88767bf4002a8cfe00523e3d47ccef</div><div>to   443882c0517384dac0053584742eb2fda5089b96</div></div><div><br></div><div>If I were to make a guess, it appears that the new tagging method applies tags on the latest commit of certain branches (at least that's how it appears while looking at the git-tree).  However, such an algorithm would not take into account the case where tags were applied but yet further commits occurred along those branches after-the-fact.  I haven't seen the code, though-- this is just a guess from looking at the tree itself.</div><div><br></div><div>I'm guessing that this might be an issue.</div><div><br></div><div>Regards,</div><div>  -John</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, May 18, 2017 at 4:00 PM, Sandro Santilli <span dir="ltr"><<a href="mailto:strk@kbt.io" target="_blank">strk@kbt.io</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 Wed, May 17, 2017 at 04:29:37PM -0400, John Harvey wrote:<br>
<br>
> Every tag seems to be duplicated, but with single-quotes around them.<br>
> Example:<br>
> 22140385fe341da6c7df020abc245e<wbr>fc00dba3c2 refs/tags/'2.3.2'<br>
> 22140385fe341da6c7df020abc245e<wbr>fc00dba3c2 refs/tags/2.3.2<br>
<br>
</span>Thanks for the report. Problem fixed with this change:<br>
<br>
    <a href="https://git.osgeo.org/gogs/postgis/repository-sync-scripts/commit/ae8f95154311e9a5e6df8a7517f33615a032117d" rel="noreferrer" target="_blank">https://git.osgeo.org/gogs/<wbr>postgis/repository-sync-<wbr>scripts/commit/<wbr>ae8f95154311e9a5e6df8a7517f336<wbr>15a032117d</a><br>
<br>
And mess cleaned up with this:<br>
<br>
  git remote | while read remote; do<br>
    git ls-remote --tags $remote | grep "'" |<br>
        awk '{print $2}' | sed 's/^/:/' | tr -s '\n' '\0' |<br>
        xargs -0 git push $remote;<br>
  done<br>
<br>
Let me know if you find any other issue with the<br>
[CodeMirrors](<a href="http://trac.osgeo.org/postgis/wiki/CodeMirrors" rel="noreferrer" target="_blank">http://trac.<wbr>osgeo.org/postgis/wiki/<wbr>CodeMirrors</a>)<br>
<br>
--strk;<br>
</blockquote></div><br></div>