Checking out phpMyAdmin with SVN

October 27, 2006 at 1:48 pm

This is more a reminded to myself than anyone else, but as of this posting you can get the latest version of phpMyAdmin via SVN:

svn checkout https://svn.sourceforge.net/svnroot/phpmyadmin/tags/STABLE/phpMyAdmin phpMyAdmin-stable

CVS Revert

September 18, 2006 at 8:43 am

To revert to an older file in CVS, do the following:

cvs update -r 1.2 test
mv test test.old.ver
cvs update -A test
mv test.old.ver test
cvs commit -m “reverting to version 1.2″ test

Thanks to http://elib.cs.berkeley.edu/admin/cvs/cvsrevert.html for this hint.