Difference between revisions of "Subversion notes"

From Simson Garfinkel
Jump to navigationJump to search
m (Created page with '<tt>svn move</tt> doesn't preserve edit history. To do that, use: svn copy oldname newname svn rm oldname To enable the subversion execute bit (so that scripts get checked…')
 
m
Line 6: Line 6:


   svn ps svn:executable yes filename
   svn ps svn:executable yes filename
To make your PDF's binary:
  svn propset svn:mime-type application/pdf *.pdf

Revision as of 10:15, 27 April 2010

svn move doesn't preserve edit history. To do that, use:

  svn copy oldname newname
  svn rm oldname

To enable the subversion execute bit (so that scripts get checked out with their execute bit set):

 svn ps svn:executable yes filename

To make your PDF's binary:

 svn propset svn:mime-type application/pdf *.pdf