Changes between Version 18 and Version 19 of HowToSVN


Ignore:
Timestamp:
May 6, 2008, 10:04:11 PM (16 years ago)
Author:
hamish
Comment:

propset

Legend:

Unmodified
Added
Removed
Modified
  • HowToSVN

    v18 v19  
    108108}}}
    109109
     110=== File properties ===
     111
     112SVN lets you set file properties. For example to get "$Date$" text in help pages to automatically update activate the Date keyword. See "svn help" and "svn help propset" for more information.
     113
     114Some common tasks:
     115{{{
     116svn propset svn:keywords "Date" descrption.html
     117svn propset svn:executable ON g.script.sh
     118svn propset svn:mime-type "application/x-pdf" document.pdf
     119
     120svn proplist ps/ps.map/prolog.ps
     121svn propget svn:mime-type ps/ps.map/prolog.ps
     122}}}
     123
    110124
    111125== See Also ==