Changes between Version 55 and Version 56 of Developers
- Timestamp:
- 2018-06-25T16:34:09+02:00 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Developers
v55 v56 26 26 27 27 {{{#!sh 28 # Create a void NEMO development organisation (trunk + branches + releases)28 ## Create a void NEMO development organisation (trunk + branches + releases) 29 29 svn co --depth immediates http://forge.ipsl.jussieu.fr/nemo/svn/NEMO/ dev_orga 30 30 cd dev_orga 31 # Switch from user to developer role if you have the rights by changing the URL scheme 31 32 ## Switch from user to developer role if you have the rights by changing the URL scheme 32 33 svn sw --relocate http://forge.ipsl.jussieu.fr \ 33 34 svn+ssh://$ID@forge.ipsl.jussieu.fr/ipsl/forge/projets 34 # Download the trunk, the same procedure can be used for a release or a dev branch 35 svn up --set-depth infinity trunk 36 # Create your development branch locally 37 svn copy trunk[@${PEGREV}] branches/$year/'dev_r'${PEGREV}_${NameOfNewBranch} 35 ## Copy your SSH key to your account on the Forge server to avoid repeated password requests 36 ssh-copy-id -i ~/ssh/id_rsa.pub $ID@forge.ipsl.jussieu.fr 37 38 ## Get the current directory tree under 'branches' 39 svn up --set-depth immediates branches 40 ## Download the trunk, the same procedure can be used for any sub-content (release, dev branch) 41 svn up --set-depth infinity trunk 42 43 ## Create your development branch locally 44 svn copy trunk[@${PEGREV}] branches/$year/'dev_r'${PEGREV}_${NameOfNewBranch} 45 ## And push it to the repository 46 svn commit [-m 'log message'] branches/$year/'dev_r'${PEGREV}_${NameOfNewBranch} 47 38 48 cd branches/$year/'dev_r'${PEGREV}_${NameOfNewBranch} 39 # Download sette tool to validate your changes to the NEMO reference 49 50 ## Download sette tool to validate your changes to the NEMO reference 40 51 svn co http://forge.ipsl.jussieu.fr/nemo/svn/utils/CI/sette 41 # Doc figures for building NEMO manual (not mandatory)52 ## Doc figures for building NEMO manual (not mandatory) 42 53 svn co http://forge.ipsl.jussieu.fr/nemo/svn/utils/figures ./doc/figures 43 54 }}}