Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Getting a list of all the directories might be a good first step. Here's one way to do that without actually checking anything out:</p> <ol> <li><p>Create a text file with the contents of the repository:</p> <p>svn list --depth infinity <a href="https://myrepository.com/svn/path/to/root/directory" rel="nofollow noreferrer">https://myrepository.com/svn/path/to/root/directory</a> > everything.txt</p></li> <li><p>Trim it down to just the directories. Directories will all end with a forward slash:</p> <p>grep "/$" everything.txt > just_directories.txt</p></li> </ol> <p>In your case you'll want to open it up in a text editor and take out the tag directories your hooks choke on.</p> <p>Since you've got the repository checked out you can use that file directly as input to a propset operation:</p> <pre><code>svn propset myprop myvalue --targets just_directories.txt </code></pre> <p>I wanted to set the properties directly on the repository versions of the files without checking them out first, but it didn't work. I prepended each directory name with the repository path (<a href="https://myrepository.com/svn/path/to/root/directory" rel="nofollow noreferrer">https://myrepository.com/svn/path/to/root/directory</a>) and tried <em>svn propset myprop mypropvalue --targets just_directories.txt</em> but it gave an error: <em>svn: Setting property on non-local target '<a href="https://myrepository.com/svn/path/to/root/directory/subdir1" rel="nofollow noreferrer">https://myrepository.com/svn/path/to/root/directory/subdir1</a>' needs a base revision</em>. Not sure if there's a way around that.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload