Reputation: 986
Let's assume that I've exported my local repo because I didn't want to have .svn directories in it. Then I've made changes in my exported copy and I would like to import it back to my local repo. Is it possible?
Upvotes: 1
Views: 309
Reputation: 7002
The easiest way I find is to check out a fresh working copy and then copy recursively (drag & drop) your exported directory over the working copy directory.
You should get a working copy with the changes you made in your exported directory where you can commit them to the repository.
Upvotes: 1
Reputation: 692121
I would use WinMerge to compare the working copy with the exported one, and merge back the changes from the exported working copy to the actual working copy:
After the merge is done, commit the WC and don't ever make changes anymore in an exported WC.
Upvotes: 3