Reputation: 581
I have this folder structure:
Folder A
└── Folder B
└── Folder C
They exist my repo and now I got a clean folder structure outside SVN with almost the exact same structure (some folders and files may have been added/updated)
Something like:
Folder A
├── Folder B
│ └── Folder C
└── Folder D
Is there an easy way to get the new changes without having to remove (svn delete, svn commit) the old structure and adding the new one?
I don't want to do this folder by folder since there can be a lot of nested folders.
Upvotes: 1
Views: 254
Reputation: 29715
You can use svn_load_dirs.pl which is doing exact what you need:
Upvotes: 2
Reputation: 66263
If you are sure, that no files / dirs have been deleted in the new structure I would do this:
Deletions would not be detected by this procedure.
Upvotes: 2