Changes between Initial Version and Version 1 of SvnCribSheet


Ignore:
Timestamp:
Oct 15, 2007 12:28:33 PM (17 years ago)
Author:
Andy Vick
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnCribSheet

    v1 v1  
     1
     2== Workflow 1: User ==
     3
     4First of all, get the information about where the repository is (the URL), and any login information you might need. For the Ultracam server
     5the URL is '''https://forge.roe.ac.uk/svn/Ultracam/MODULE_NAME/XXXX''' where;
     6  * MODULE_NAME should be replaced by the module you want (for example UCamFileServer)
     7  * XXXX should normally be replaced by the word '''"trunk"'''
     8
     9After that, choose a directory to work in and execute, for example;
     10
     11{{{
     12svn checkout https://forge.roe.ac.uk/svn/Ultracam/UCamFileServer/trunk UServer
     13}}}
     14
     15This will check out the code from the '''trunk''' of UCamFileServer into a local directory called UServer. You should be able to build/install/run this code.
     16
     17
     18== Workflow 2: general developer ==