Subversion Partial Export

后端 未结 8 1539

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:50

    svn export does not accept a revision range, try it out.

    A possible solution is to get the list of changed files with:

    svn diff --summarize -rXXX http://svn/...
    

    and then export each of them.

提交回复
热议问题