How do I switch to a branch without checking out a new working copy?
In CVS, if you have a working copy for your project and are ready to begin work on a branch, you would pass the branch name as the revision to which you wished to update. Because Subversion treats tags and branches as regular paths in the repository, you can’t just svn update your working copy to the branch name in question. Enter the svn switch command. svn switch updates your working copy to mirror a new tree in the repository–say, a branch tree instead of the trunk tree. This is the Subversion way to move a working copy to a new branch. $ svn switch http://svn.red-bean.com/repos/branches/vendors-with-fix. U myproj/foo.txt U myproj/bar.txt U myproj/baz.c U myproj/qux.c Updated to revision 31.