Reputation: 2328
I plan to dump the svn Fruit repository in order to exclude a set of folders from the root of it then load it again. For e.g.
Fruit
-Banana
-Tomato
-Potato
So we know Fruit is the svn project and I want to filter exclude some vegetables entered by mistake. Potato is obvious enough but I'm sure that there are folders from previous revisions that I would also like to exclude.
How can I get a full history of the folders that existed in the root of the Fruit repo?
Upvotes: 2
Views: 84
Reputation: 107040
Do you want the history, or do you want a listing of all the current folders?
Fruit
repo directory.$ svn ls http://svn/repo/Fruit
Fruits
repository directory.$ svn log --depth=immediates http://svn/repos/Fruit
Or, are you trying to filter out the repo via svndumpfilter? That's an entirely different question...
Upvotes: 2