[[TOC]] == Getting development information and code history from SVN == * "!ChangeLog" style file: install and run [http://ch.tudelft.nl/~arthur/svn2cl/ svn2cl] * File history in SVN: {{{ cd path/to/directory/ svn log [file.c] # or time reverted: svn log [file.c] | tac }}} == Switch the repository == To switch from SVN 'trunk' (now GRASS 7 development) to 'develbranch_6' (now GRASS 6.4 development) use {{{ cd /path/to/your/local/copy/trunk svn switch https://svn.osgeo.org/grass/grass/branches/develbranch_6 . }}} The switch command preserves local, uncommited changes. == SVN usage == * http://svnbook.red-bean.com/ == See Also == * http://developer.r-project.org/SVNtips.html