vote up 0 vote down star

In my repository, lets say I have this:

Animal
  Dog
     Beagle
     Hound
     ...

Lets say I checked out Dog to a working directory and I realized, whoops, I really wanted to checkout Animal.

I can delete my working copy, the Dog directory, and checkout Animal, but is there way I can do so without deleting and checking out again?

If my working copy of Dog has Animal as a parent folder and I checkout Animal without deleting Dog, I get something like "subversion failed to add directory versioned same name already exists".

I'm also using tortoise. Thanks.

flag

45% accept rate
1  
What's the problem with deleting & checking out again? If you've already made changes, commit them, then start over. – kajaco Aug 30 at 14:28
It's not a problem. That's what I did and it worked. Just wondering if I there was a better way, or there is a more correct way of doing this. – Steve Aug 30 at 14:39

2 Answers

vote up 1 vote down

You're looking for svn switch, which updates your working copy to reflect a new path. Modified files don't get touched, though. In TortoiseSVN, right click and select "Switch..." from the context menu.

The more common use case for svn switch is to switch between branches that are rooted from the same point, so that you can have different views of the same code. But you can switch between arbitrary paths in your repository.

link|flag
But my parent directory, Animal, isn't under version control, so I can't switch to it, at least not from Tortoise. Maybe via command line? – Steve Aug 30 at 14:41
I'm confused. How can your repository have Animal in it if it's not under version control? Is that a typo? – John Feminella Aug 30 at 14:55
I did a copy (branch) to create Animal. In my working copy, Animal doesn't have the .svn directory. It's a folder that has the same name as the repository folder. So my working directory is an exact duplicate of the repository structure, but I checked out Dog to Dog. Hope that makes sense. – Steve Aug 30 at 15:16
vote up 1 vote down

This is not possible directly.

The easiest way is to delete your working copy and do a new checkout of Animal.

If you have any changes in Dog that you'd like to keep, move Dog to a temporary location, checkout Animal and then copy Dog back into the Animal directory.

link|flag

Your Answer

Get an OpenID
or

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