Reputation: 80
I had kept my svn code repository on ubuntu machine, but unfortunately the machine was deleted so the svn repository was also deleted. but i had already svn checkedout the code. now i created the new machine and also set up the repository, now i want to push my existing checkedout code with their commit history to the new repository
i want too create a svn repository using already checked out code from different repository with their history. for achieving this what i had tried is i had created the new repository and then tried to relocate the already checkedout code to this repository but its not working
Upvotes: 0
Views: 865
Reputation: 30662
.svn
directory from your import. E.g. move it out from your current working copy.Check the procedure described at http://subversion.apache.org/quick-start#setting-up-a-local-repo.
Upvotes: 1