Is it possible to create a property in the autoprops section of .subversion/config file which contains multiline values?
So that it would look like:
svn pg myprop
will output
1st line of prop
2nd line of prop
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, it doesn’t appear so.
In fact it’s not even possible to include “;” in a autoprop value, though that’s expected to change with Subversion 1.7:
The semi-colon problem is irritating for
svn:mime-typeproperties:Whoops.
Sometimes formats like
.subversion/configprovide some kind of line continuation:But, Subversion itself doesn’t seem to follow such conventions. They wouldn’t help you anyway, since this ability to break lines just makes it possible to span one logical line across multiple physical lines. The value of the
fooproperty will not contain any line breaks once the file has been parsed.