Relative Path in Subversion external configuration

前端 未结 1 1616
误落风尘
误落风尘 2020-12-13 13:16

Is there any way to use Relative path when configuring subversion externals.

For example

 Trunk
      - directoryA
      - directoryB
      - projec         


        
相关标签:
1条回答
  • 2020-12-13 13:43

    Subversion 1.5 clients support relative urls:

    See the Subversion 1.5 release notes and the subversion manual for more details

    Some examples: (Note that the comment syntax is not supported)

    # Repository root relative
    ^/projectX/trunk/src/ projectX
    
    # Relative to current directory
    ../../dependency/X X
    
    # Server root relative
    /svn/repos/projectX/trunk/src projectX
    
    # Schema relative
    //svn.collab.net/repos/svn/trunk svn
    
    0 讨论(0)
提交回复
热议问题