Difference between revisions of "Subversion notes"

From Simson Garfinkel
Jump to navigationJump to search
m
m
Line 1: Line 1:
<tt>svn move</tt> doesn't preserve edit history. To do that, use:
==File Activities==
  svn copy oldname newname
Make your PDF's binary:
  svn rm oldname
  svn propset svn:mime-type application/pdf *.pdf
 
Enable the subversion execute bit (so that scripts get checked out with their execute bit set):
To enable the subversion execute bit (so that scripts get checked out with their execute bit set):
 
   svn ps svn:executable yes filename
   svn ps svn:executable yes filename
 
==Directory Activities==
To make your PDF's binary:
==Repository Activities==
 
Verify data served in a repository:
  svn propset svn:mime-type application/pdf *.pdf
  svnadmin verify REPOS_PATH

Revision as of 07:11, 28 January 2013

File Activities

Make your PDF's binary:

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

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

 svn ps svn:executable yes filename

Directory Activities

Repository Activities

Verify data served in a repository:

  svnadmin verify REPOS_PATH