Changes between Version 1 and Version 2 of Subversion


Ignore:
Timestamp:
Jan 23, 2012, 10:16:55 PM (12 years ago)
Author:
dzollars
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Subversion

    v1 v2  
    1 Subversion check out.
     1= Subversion Info =
     2
     3Checkout from subversion with:
     4
     5  svn co svn+ssh://bcf.uthscsa.edu/us3_gridctl/trunk us3_gridctl
     6
     7or if you just want the files once:
     8 
     9  svn export svn://bcf.uthscsa.edu/us3_gridctl/trunk us3_gridctl
     10
     11change the final 'us3_gridctl' above to any directory name you desire.  It will be created in the current directory.
     12
     13To pass a different user to an ssh access to svn, use
     14
     15  svn co svn+ssh://username@bcf.uthscsa.edu/us3_gridctl/trunk us3_gridctl
     16
     17If you use:
     18
     19  svn co svn://bcf.uthscsa.edu/us3_gridctl/trunk us3_gridctl
     20
     21you will be able to get updates with:
     22
     23  svn update
     24
     25but you will not be able to check anything into the system.
     26
     27When you are creating a new file or directory, you need to tell the SVN server about it.
     28
     29  {{{svn add <filename(s) or directory>}}}
     30
     31When adding a file to svn, be sure to set attributes (on text files):
     32
     33  {{{svn propset svn:keywords "LastChangedDate Author"  <filename>}}}
     34
     35For more details on subversion see the on-line book at  http://svnbook.red-bean.com/en/1.4/svn-book.html