svndumpfilter fails with “Invalid copy source path…” error

前端 未结 3 1603
轻奢々
轻奢々 2020-12-31 09:00

I want to move part of my SVN repo offsite, onto an AWS instance & am following this page (Repository Maintenance)

I have taken a dump of the whole r

3条回答
  •  礼貌的吻别
    2020-12-31 09:46

    I've tried at least 4 different applications to do that, the only that really worked was using svndumpfilterIN :

    svnadmin dump c:\repo > all_repo
    svndumpfilter.py all_repo --repo=c:\repo --output-dump=m1 include M1
    

    Here is my full answer on linux.

    Here is what I tried and didn't worked :

    • http://furius.ca/pubcode/pub/conf/bin/svndumpfilter3.html (from previous answer)
    • Including the problematic path as said in another previous answer and here. Problem : I still have paths I do not want in the target dump
    • svndumpsanitizer (I still have paths I do not want in the target dump also)

提交回复
热议问题