0

In git I can remove .git folder and after that, the folder is considered as a normal folder, I wonder how can I do the same for svn folder?

joe gates
  • 459
  • 1
  • 5
  • 15

2 Answers2

1

It's almost the same, but svn creates a hidden .svn folder for each subfolders (for older SVN versions).

Newer svn clients also only create a single top-level .svn directory.

In both cases, just remove .svn in the parent, and in the subfolders if exists on your version.

Alessandro Hoss
  • 395
  • 4
  • 8
1

You can do a svn export: this will create a clean (without any .svn folder) copy of your svn working copy. You can choose to export only the svn-versioned files or also other files that are being ignored.

After exporting you can just remove the original working copy folders. Make sure that all the critical files are there (you may have forgotten to add them).

carnicer
  • 494
  • 3
  • 9