vote up 1 vote down star
1

Here is what my svn repository look like:

/
/libraries
  /libA
  /libB
  /libC
/tools
/projects
  /proj1
  /proj2
/website

I am making changes in libA and proj1. I want to set it up so that I can submit my changes in libA and proj1 together. The challenge in not to check out the entire repository. I would prefer the solution to be Tortoise SVN friendly.

flag

80% accept rate

4 Answers

vote up 4 vote down check

You can use sparse checkouts in Subversion 1.5.

Read more about it here: Sparse Directories.

This will allow you to checkout the root repository directory to a local directory, but not everything beneath it.

link|flag
vote up 0 vote down

IntelliJ has terrific integration with SVN built-in. I use that.

Tortoise SVN is a Windows Explorer interface for SVN. But I barely use it because IntelliJ is so good.

link|flag
vote up 0 vote down

You may be getting into the realm where using a real IDE or plain command-line may be more powerful than any GUI.

link|flag
vote up 2 vote down

I've heard a few different ways to do this, but my preferred method is via SVN Externals.

link|flag
I can't use externals, because other people are working on the whole set of libraries. I don't want to make them get my project. – phi Dec 26 '08 at 22:57
That's backwards. Your project adds an externals property to pull the libraries in, but not vice versa. – Joel Coehoorn Dec 27 '08 at 2:35
Good call! I'll try this too. Thanks. – phi Dec 27 '08 at 3:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.