Changes between Version 2 and Version 3 of svndocumentations


Ignore:
Timestamp:
02/16/11 16:20:57 (13 years ago)
Author:
Jerome
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • svndocumentations

    v2 v3  
    11= SVN Documentation =
    22
    3 == Command line ==
     3== SVN Commands ==
     4
     5 * Checkout : create/import a svn project from a repository on a server to a local computer.
     6 * Update : update your local svn project snapshot. Apply other user modifications on your local snapshot
     7 * Commit : apply your svn project modification (update the repository).
     8
     9The SVN lifecycle is the following :
     10
     11 0. Check out a svn project from a repository : ''svn checkout !svn+ssh://user@server/svn_project_directory''.
     12 1. In that project, create or edit files and subdirectories. If a file or a directory is created, it must be added with the following command : ''svn add name''
     13 2. Update your local copy from the repository, picking up changes your team members may have made since your last update : ''svn update''.
     14 3. Go to step 1. If you're ready to commit your changes, go to step 4.
     15 4. Commit your changes to the repository : ''svn commit''. Go to step 2.
    416
    517== Tortoise SVN (windows) ==