How do I create a branch in SVN?
svn cp /trunk/ /branch/NEW_Branch
If you have some local changes in trunk then use Rsync to sync changes
Rsync
rsync -r -v -p --exclude ".svn" /trunk/ /branch/NEW_Branch