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