On Tue, May 7, 2019 at 2:33 PM Osipov, Michael <michael.osi...@siemens.com> wrote: > > > > Am 2019-05-07 um 14:20 schrieb Branko Čibej: > > On 07.05.2019 13:53, Osipov, Michael wrote: > >> Hi folks, > >> > >> consider the following layout we need to solve for our legacy build: > >> > >> . > >> |-- forms > >> |-- src > >> \-- inc > >> > >> inc shall point to forms as external. Wenn doing "svn ps" with "forms > >> inc" or "./forms inc" I receive an error. > > > > Just to clarify, you want this: > > > > $ svn propset svn:externals './forms inc' . > > Correct. Expanded it is: > > /di1234/trunk > |-- forms > |-- src > \-- inc
Can't you use the following? $ svn propset svn:externals '../forms inc' . or '../trunk/forms inc' (not sure) According to the book [1] '../' means "Relative to the URL of the directory on which the svn:externals property is set" [1] http://svnbook.red-bean.com/nightly/en/svn.advanced.externals.html -- Johan