DinoSaadeh
DinoSaadeh

Reputation: 790

I cannot see the .SVN folders anymore?

I recently upgraded my tortoise to version 1.7. It's been a while now I cannot see the .svn folders. I used to copy folders to replicate some code, enter the folder and delete the .svn of the copied version so that it considers the code as new. I cannot do this anymore :(

Anyone knows what is going on?

Upvotes: 14

Views: 9707

Answers (4)

OnlineCop
OnlineCop

Reputation: 4069

Like @Anders said, the new version of SVN 1.7 gets rid of individual .svn folders within each directory. Now, the head node contains ./svn along with a subdirectory named pristine that contains the original svn copy of all those files/directories. This makes it a lot nicer to copy from project1 to project2 without having to run special scripts to remove all those remnant .svn folders.

Upvotes: 2

J Bourne
J Bourne

Reputation: 1439

You can try exporting. It usually removes all .svn files and you can create a fresh project everytime with the exported code..!

Upvotes: 0

Michael Madsen
Michael Madsen

Reputation: 55009

Subversion 1.7 switched to a single-folder structure, like many DVCSes (git, bazaar, etc.) - the only .svn folder is in the root folder now, and this contains all of the info for the checkout.

You should now be able to simply copy the folder and check it in.

Upvotes: 24

Anders Forsgren
Anders Forsgren

Reputation: 11111

They have been moved from being inside each subfolder of your working copy, and now are all in one place.

Upvotes: 5

Related Questions