March 09
Prof. Ismael H. F. Santos                                                                               2
Details: properties
nFive different commands for manipulating properties on files and directories
$ svn propset test-property "hi there" file2
property `test-property' set on 'file2'
$ svn proplist file2
Properties on 'file2':
  test-property
$ svn propget test-property file2
hi there
$ svn propedit test-property file2
editor pops up here
Set new value for property `test-property' on `file2'
$ svn propget test-property file2
changed the property value
$ svn propdel test-property file2
property `test-property' deleted from 'file2'.
$