My SVN folder structure is like this.
/SVN/Repos/Trunk
              /Lib1
              /Lib2
              /AppI wanted to add an external directory to trunk folder. As shown below.
/SVN/Repos/Trunk
              /Lib1
              /Lib2
              /webkit
              /AppI tried various ways to set the svn:externals property all in vain. Thanks to the following link I got to know how to do it right.
%cd /SVN/Repos/Trunk
%svn propset svn:externals 'webkit http://svn.webkit.org/repository/webkit/trunk' . This did the trick.
%svn propget svn:externalscan be used to verify if the externals are properly set.
No comments:
Post a Comment