Changes between Version 3 and Version 4 of cypress/Programming/Svn)
- Timestamp:
- 08/18/15 22:56:09 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/Programming/Svn)
v3 v4 14 14 * even if you develop a software yourself... 15 15 * When you made a stupid change and screwed up .... 16 * Allows you to go back.17 * Revert to a previous revision of a file/directory.16 * Allows you to go back. 17 * Revert to a previous revision of a file/directory. 18 18 19 19 [[Image(300px-SVN_revision.png)]] 20 20 21 21 == First things to do == 22 * Create a repository 22 '''Create a repository''' 23 23 24 {{{ 24 25 svnadmin create $HOME/repos … … 29 30 30 31 Once you did this, you don't have to do this again. Do not delete '$HOME/repos' !!! 31 * Testing your repository 32 On sphynx, 32 33 '''Testing your repository''' 34 35 On Cypress, 33 36 {{{ 34 37 mkdir mywork … … 38 41 svn import file:///$HOME/repos/project1 -m"initial import" 39 42 }}} 43 40 44 Now you have ''project1'' in your repository. 41 45