Question

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.

Was it helpful?

Solution

you want svn switch

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top