Creating a Developer Branch
From MapbenderWiki
Once you have obtained a OSGEO account to create a branch, you can create a developer branch as such on the Mapbender SVN
- Create a Developer directory as a SVN Branch
svn --username <username> --password <password> mkdir -m "Whatever message you want to see" http://svn.osgeo.org/mapbender/branches/<username>_dev
- Copy the code you require to the branch - in this case, the trunk code is copied over
svn --username <username> --password <password> cp http://svn.osgeo.org/mapbender/trunk/mapbender/ http://svn.osgeo.org/mapbender/branches/<username>_dev/mapbender/
- You can then work with the branch you created:
svn --username <username> --password <password> co http://svn.osgeo.org/mapbender/branches/<username>_dev/mapbender/
