1

is it possible to add a Custom Property for my files in SVN?

e.g. I want to add an entry "Release Ref:" which can be list like 3.1, 3.2, 3.3, 3.31, 3.4 ..etc.

Second I want to get all the files from the Branch based on this property entry!

is that possible from CLI or ANT?

I am a little new to SVN Please help

Sandeep540
  • 897
  • 3
  • 13
  • 38

1 Answers1

2

Yes, you can add any custom property you like:

Generally speaking, the names and values of the properties can be whatever you want them to be, with the constraint that the names must contain only ASCII characters.

To search for files based on properties, use svn propget:

svn propget prefix:prop-name -R 
Ivan Jovović
  • 5,238
  • 3
  • 29
  • 57