New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Developers (diff) – NEMO

Changes between Version 53 and Version 54 of Developers


Ignore:
Timestamp:
2018-06-22T12:26:22+02:00 (5 years ago)
Author:
nicolasmartin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Developers

    v53 v54  
    2727{{{#!sh 
    2828# Development organisation downloading ( trunk + branches + releases ) 
    29 svn co http://forge.ipsl.jussieu.fr/nemo/svn/NEMO [...] 
    30 cd {NEMO,[...]} 
     29svn co --depth immediates http://forge.ipsl.jussieu.fr/nemo/svn/NEMO/ dev_orga 
     30cd dev_orga 
    3131# Change from user to developer if you have the rights 
    32 svn sw --relocate http://forge.ipsl.jussieu.fr                            \ 
    33                   svn+ssh://'ID'@forge.ipsl.jussieu.fr/ipsl/forge/projets 
     32svn sw --relocate http://forge.ipsl.jussieu.fr                           \ 
     33                  svn+ssh://$ID@forge.ipsl.jussieu.fr/ipsl/forge/projets 
    3434# Create your development branch locally 
    35 svn copy trunk ... 
    36 cd ... 
     35svn copy trunk[@${PEGREV}] branches/$year/'dev_r'${PEGREV}_${NameOfNewBranch} 
     36cd branches/$year/'dev_r'${PEGREV}_${NameOfNewBranch} 
    3737# Download sette tool to validate your changes to the NEMO reference 
    3838svn co http://forge.ipsl.jussieu.fr/nemo/svn/utils/CI/sette 
     
    5252 
    5353{{{#!sh 
    54 # Relative URL                 Path in WC   Content 
    55 ^/utils/build/arch'[@REV]'     arch         # FCM settings files for computing architectures 
    56 ^/utils/build/makenemo'[@REV]' makenemo     # Main script for building a NEMO configuration 
    57 ^/utils/build/mk'[@REV]'       mk           # Sub-scripts and FCM inputs for compiling 
    58 ^/utils/tools'[@REV]'          tools        # User tools 
    59 ^/vendors/AGRIF/dev'[@REV]'    ext/AGRIF    # Dependency for nesting 
    60 ^/vendors/FCM'[@REV]'          ext/FCM      #     ""     for source code compilation 
    61 ^/vendors/IOIPSL'[@REV]'       ext/IOIPSL   #     ""     for IO management 
     54# Relative URL                Path in WC   Content 
     55^/utils/build/arch[@$REV]     arch         # FCM settings files for computing architectures 
     56^/utils/build/makenemo[@$REV] makenemo     # Main script for building a NEMO configuration 
     57^/utils/build/mk[@$REV]       mk           # Sub-scripts and FCM inputs for compiling 
     58^/utils/tools[@$REV]          tools        # User tools 
     59^/vendors/AGRIF/dev[@$REV]    ext/AGRIF    # Dependency for nesting 
     60^/vendors/FCM[@$REV]          ext/FCM      #     ""     for source code compilation 
     61^/vendors/IOIPSL[@$REV]       ext/IOIPSL   #     ""     for IO management 
    6262# '^' for repository root 
    6363}}}