dsuni / svndumpsanitizer

A program aspiring to be a more advanced version of svndumpfilter
https://miria.homelinuxserver.org/svndumpsanitizer/
GNU General Public License v3.0
47 stars 15 forks source link

Add a program option to specify a file with all include/exclude paths #14

Closed FelixPetriconi closed 3 years ago

FelixPetriconi commented 6 years ago

For my current task I have to filter a huge bunch of paths from an existing huge repository so I would like to specify the filter-paths through a file as it is possible for svndumpfilter.

I have already done all necessary changes and I would like to test the changes so that I can send a push-request. How can I run the tests? Btw. it seems to me that I need a test repository, or am I on the wrong track?

FelixPetriconi commented 6 years ago

I figured out in the meantime that on Mac the dialect of sed is different to make the tests run.

katef commented 5 years ago

I'd love this, too :) The diff in #15 looks great to me!

dsuni commented 5 years ago

I didn't implement this because it's quite easy to achieve on the command line without actually doing anything with svndumpsanitizer. Running: svndumpsanitizer --include $(cat file_with_includes.txt | tr '\n' ' ') ... should achieve the same thing.

katef commented 5 years ago

@dsuni thank you for making this program, by the way! it's what I wanted svndumpfilter to be :)

RockyMM commented 3 years ago

@dsuni then, this issue can be closed? @FelixPetriconi I assume you have managed?