views:

16

answers:

1

Someone branched our trunk and now I need to checkout the new branch. I already have trunk checked out locally. Since its a huge repo with GBs of files, it will take forever to checkout the new branch.

But since very few files have changed between the trunk and the new branch, how can I just copy my local trunk, call it the branch, then svn up the differences? Thanks!

Bonus: How to do it where I don't even have to copy trunk, just work off the differences.

+5  A: 

you want svn switch

In your working copy (of trunk), just svn switch <url/to/branch>

timdev
Ah ha! I'll check that out
nolanpro
Yup that did it, Thanks!
nolanpro