tags:

views:

79

answers:

2

It looks like SVN properties are stored in the local Working Copy folder, not on the server.

If this is correct, how can I duplicate these properties already defined in different files underneath the Working Copy folder to another machine?

The only property needs to be transferred is svn:ignore.

+5  A: 

All properties (Subversion-specific like 'svn:ignore' or user-defined) are stored in the repository. Maybe you have forgot to commit after you've set/changed them?

Milen A. Radev
+3  A: 

svn properties are stored in the repository. When you change them you have to commit the change.

Hank Gay