<br /><br /><span>On 12/31/10, <b class="name">Erik Lindahl </b> &lt;erik@kth.se&gt; wrote:</span><blockquote cite="mid:E2F92382-D4D9-49ED-A2E6-729164C86C6C@kth.se" class="iwcQuote" style="border-left: 1px solid rgb(0, 0, 255); padding-left: 13px; margin-left: 0pt;" type="cite"><div class="mimepart text plain">Hi!<br /><br />We figured we'd celebrate the upcoming new year with some major changes in the git development branch, consisting primarily of C++ support and a more modular organization of files.<br />This is a gradual process, so this mail is a bit of a warning-message that the master/development branch might have some issues with compilers/build environments the next couple of weeks.</div></blockquote><br />Wouldn't creating an &quot;unstable&quot; branch be a better approach to a known lengthy period of instability? Now people working off (or fixing) the master branch don't have to change their workflows at all. If bugfix commits or merges from release-4-5-patches happen into master, that's great, and don't affect unstable at all. git branches are lightweight and seem correct to use on almost any excuse.<br /><br />Later, once &quot;unstable&quot; has matured a bit, <br /><br />git rebase master<br />git checkout master<br />git merge unstable<br /><br />will create the impression that development on master was seamless. No ugly &quot;merge commits&quot;, and the &quot;unstable&quot; branch just quietly goes away afterwards.<br /><br /><blockquote cite="mid:E2F92382-D4D9-49ED-A2E6-729164C86C6C@kth.se" class="iwcQuote" style="border-left: 1px solid rgb(0, 0, 255); padding-left: 13px; margin-left: 0pt;" type="cite"><div class="mimepart text plain">If you occasionally use a git build to run production simulation, just use the release-4-5-patches branch instead, and everything should be fine.<br /><br />However, If you are working on your own code based on the git master branch, it might be a good idea to either switch to the release-4-5-patches branch, or create your own branch that you no longer sync with master as frequently. In the latter case you might have to go through some pain to port your code back to the new file organization later (sorry about that).</div></blockquote><br />git provides a good technique for switching away from master, provided you've been a good coder and made your own local branch:<br /><br />git rebase --onto origin/release-4-5-patches origin/master your-local-branch<br /><br />If you haven't made your own local branch (which, after all, is just an alias to a commit) then you can probably substitute suitable git commit hashes into the above. Or do an interactive rebase to create the impression that you've done a continuous series of local commits from the current origin/master HEAD, then name your branch, and then rebase --onto.<br /><br />Mark<br /><br /><blockquote cite="mid:E2F92382-D4D9-49ED-A2E6-729164C86C6C@kth.se" class="iwcQuote" style="border-left: 1px solid rgb(0, 0, 255); padding-left: 13px; margin-left: 0pt;" type="cite"><div class="mimepart text plain">The upside of all this is that the file organization will gradually get easier to understand, and the code itself should also get much more modular and readable (which we hope will lead to a faster release schedule and more features :-)<br /><br /><br /><br />Happy new year!<br /><br /><br />Erik<br /><br /><br /><br />--<br />Erik Lindahl &lt;erik@kth.se&gt;<br />Professor of Theoretical &amp; Computational Biophysics<br />Department of Theoretical Physics &amp; Swedish e-Science Research Center<br />Royal Institute of Technology, Stockholm, Sweden<br />Tel: +46855378029 Cell: +46703844534 <br /><br />-- <br />gmx-developers mailing list<br />gmx-developers@gromacs.org<br /><a href="http://lists.gromacs.org/mailman/listinfo/gmx-developers" target="l">http://lists.gromacs.org/mailman/listinfo/gmx-developers</a><br />Please don't post (un)subscribe requests to the list. Use the <br />www interface or send it to gmx-developers-request@gromacs.org.<br /></div></blockquote>