Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
539 views
in Technique[技术] by (71.8m points)

svn - Relative Path in Subversion external configuration

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

For example

 Trunk
      - directoryA
      - directoryB
      - projectA {external DirectoryB}

For configuring ProjectA we have to configure full path in the external property which is causing problems or forcing us to do change the properties when we do branches.

Any way to automate the branching process or fix with absolute path will be useful

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...