svn - How to fill a new repository with a working copy -


I have a copy of a work and a new blank store. How do I use that new repository by using a copy of the work Can I fill up?

I do not have access to the original SVN.

I have all the .svn

If you want a copy of the repository with ".svn" files, you can svn export . This will give you a clean copy of code. Then you will have to do svn import or svn add to bring your files to your new repository, of course, the history of all editions will be lost, but this happens when you Make a new store!


Comments