How to edit svn externals of a folder using powershell

257 views Asked by At

In order to do a build, I checkout a svn repository which has multiple folders.One of folders has properties -> svn externals pointing to a particular tag number, I need to edit the svn externals to point to a different tag number. I want to pass this new tag number as a parameter. How can I achieve this using powershell.

1

There are 1 answers

4
Ivan Jovović On
svn propset svn:externals "folder_name http://path_to_tag" .

Note the trailing dot.

You can read a bit more about Externals Definitions here.