Changes between Version 3 and Version 4 of cypress/Programming/Svn)


Ignore:
Timestamp:
08/18/15 22:56:09 (9 years ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/Programming/Svn)

    v3 v4  
    1414  * even if you develop a software yourself...
    1515* 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.
    1818
    1919[[Image(300px-SVN_revision.png)]]
    2020
    2121== First things to do ==
    22 * Create a repository
     22'''Create a repository'''
     23
    2324{{{
    2425svnadmin create $HOME/repos
     
    2930
    3031Once 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
     35On Cypress,
    3336{{{
    3437mkdir mywork
     
    3841svn import file:///$HOME/repos/project1 -m"initial import"
    3942}}}
     43
    4044Now you have ''project1'' in your repository.
    4145