Subversion Partial Export

后端 未结 8 1545

I have somewhat interesting development situation. The client and deployment server are inside a firewall without access to the Subversion server. But the developers are out

8条回答
  •  渐次进展
    2021-01-03 06:46

    So if I understand correctly...

    Let's say you have a repository that looks like this:

    /
    |+-DIR1
    |   |- FILEa
    |   |- FILEb
    |+-DIR2
    |   |- FILEc
    |   |- FILEd
    |- FILEe
    |- FILEf
    

    And let's say you update files FILEa, FILEc, and FILEf and commit them back into the repository. Then what you want to export out of the repository is a structure that looks like this:

    /
    |+-DIR1
    |   |- FILEa
    |+-DIR2
    |   |- FILEc
    |- FILEf
    

    Is that right?

提交回复
热议问题