Changes between Initial Version and Version 1 of Documentation/UserGuide/svnBranchePerso


Ignore:
Timestamp:
2013-03-28T13:41:11+01:00 (11 years ago)
Author:
jgipsl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/svnBranchePerso

    v1 v1  
     1= How to create a new branch or a personal version = 
     2Here is some short help on how to create and commit in a personal directory or a branche.  
     3 
     4== Create your folder == 
     5First, ask for a login on svn and a personal directory on the svn repository, use orchidee-help mailing liste. 
     6When this is done, you can extracte this folder which is in the beginning empty, change in following commands to use your name : 
     7{{{ 
     8svn co svn://forge.ipsl.jussieu.fr/orchidee/perso/firstname.lastname mypersofolder 
     9}}} 
     10 
     11If you got error message "svn: Authorization failed", then add --username firstname.lastname in the commande svn.  
     12{{{ 
     13svn --username firstname.lastname co svn://forge.ipsl.jussieu.fr/orchidee/perso/firstname.lastname mypersofolder 
     14}}} 
     15 
     16 
     17== Commit in your folder == 
     18In your personal svn directory you can now commit sources code and scripts. You should not commit netcdf files, executables or other big files.[[BR]] 
     19 
     20For exemple you want to copy revision number X from the ORCHIDEE trunk into your personal folder :  
     21{{{ 
     22svn cp -r X svn://forge.ipsl.jussieu.fr/orchidee/trunk/ORCHIDEE svn://forge.ipsl.jussieu.fr/orchidee/perso/firstname.lastname/ORCHIDEE_mytrunk 
     23}}} 
     24 
     25For exemple how to copy the tag 1.9.6 into your personal folder : 
     26{{{ 
     27svn cp svn://forge.ipsl.jussieu.fr/orchidee/tags/ORCHIDEE_1_9_6 svn://forge.ipsl.jussieu.fr/orchidee/perso/firstname.lastname/myORCHIDEE_1_9_6  
     28}}} 
     29 
     30== Vizualise using web interface == 
     31If you have an login to the machine forge where the wiki and svn of ORCHIDEE is stored, then you can visualize your account at forge : [https://forge.ipsl.jussieu.fr/orchidee/browser/perso]. 
     32Ask for an acount on forge using the email list orchidee-help. This login can be used to modify the wiki, create and comment tickets and to vizualize your personal folder and all branches you have acces to.