<div dir="ltr"><div>On Tue, May 24, 2016 at 7:39 PM, Markus Neteler <<a href="mailto:neteler@osgeo.org">neteler@osgeo.org</a>> wrote:<br>> On Tue, May 24, 2016 at 2:59 PM, Markus Neteler <<a href="mailto:neteler@osgeo.org">neteler@osgeo.org</a>> wrote:<br>>> Hi devs,<br>>><br>>> at this point we are ready for creating the releasebranch_7_2 .<br>>><br>>> If there aren't any urgent objections, I'll do that later today.<br>><br>> Done: Changeset r68500<br>><br>> grass/branches/releasebranch_7_2<br>><br>> Cheers,<br>> Markus<br>><br>> PS: if you have a SVN copy locally, no need to download again if it is<br>> 7.1.svn based.<br>> Simply switch to the new branch, see<br>><br>> <a href="https://trac.osgeo.org/grass/wiki/HowToSVN#Switchtherepository">https://trac.osgeo.org/grass/wiki/HowToSVN#Switchtherepository</a><br><br>Pro tip:<br><br>If you are like me crazy about file timestamps (if you didn't realize, I am maintaining the file timestamps of last change in the release tarballs for 10+ years while SVN does not support that) , try the following hack:<br><br></div># locally clone from former trunk<br><div><span style="font-family:monospace,monospace">cp -rp grass71 grass72_release<br>cd grass72_release<br>svn switch <a href="https://svn.osgeo.org/grass/grass/branches/releasebranch_7_2">https://svn.osgeo.org/grass/grass/branches/releasebranch_7_2</a><br># ... now all timestamps are ruined!<br># gonna fix them now!<br><br># move 7.2's .svn/ elsewhere:<br>mv .svn /tmp/<br>cd ..<br>rm -rf grass72_release<br>cp -rp grass71 grass72_release<br>cd grass72_release<br></span></div><div><span style="font-family:monospace,monospace"># reinstate the real .svn/<br></span></div><div><span style="font-family:monospace,monospace">rm -rf .svn<br>mv /tmp/.svn .<br><br># revert back the files which are now ahead of relbranch72<br>svn status<br>svn status | grep '^M' | cut -d' ' -f2- | xargs svn revert<br># trash garbage<br>svn status | grep '^?' | cut -d' ' -f2- | xargs rm -rf<br><br># now it is clean but better double check<br>svn status<br>svn diff<br>svn up<br><br># done</span><br><br>Cheers<br>Markus<br></div></div>