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/SVN_QuickReference (diff) – NEMO

Changes between Version 34 and Version 35 of Developers/SVN_QuickReference


Ignore:
Timestamp:
2017-12-08T19:18:44+01:00 (6 years ago)
Author:
nicolasmartin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Developers/SVN_QuickReference

    v34 v35  
    7474=== Commit 
    7575 
    76 Extract with `svn+http` protocol or see section [#Switchfromusertodeveloper 'Switch from user to developer']. 
     76Extract with `svn+http` protocol or see section '[#Switchfromusertodeveloper Switch from user to developer]'. 
    7777 
    7878{{{#!sh 
    7979svn co svn+ssh://'your_forge_login'@forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/branches/dev_001_SBC 
    80 }}} 
    81  
    82 Then in the appropriate directory 
    83  
    84 {{{#!sh 
    85 # Tip: set your editor vi, vim, emacs, nano, ... 
    86 # for sh  and other related shells, interesting to include it in ~/.profile or ~/.bash_profile) 
    87 export SVN_EDITOR='your_favourite_editor'  
    88 # for csh  "    "      "      ""  ,      "      ""    "    "" "" ~/.login                     ) 
    89 setenv SVN_EDITOR='your_favourite_editor' 
    9080}}} 
    9181 
     
    10898}}} 
    10999 
     100====  
     101 
     102Then in the appropriate directory 
     103 
    110104{{{#!sh 
    111105# Commit and write the log message (ticket link #.... and so on) in your editor 
     
    114108# or directly from the command line of the shell session 
    115109svn ci -m 'log_message' files_list 
     110# Tip: set your editor for SVN for multi-lines commit message 
     111# for sh  and other related shells, interesting to include it in ~/.profile or ~/.bash_profile) 
     112export SVN_EDITOR='your_favourite_editor'  
     113# for csh  "    "      "      ""  ,      "      ""    "    "" "" ~/.login                     ) 
     114setenv SVN_EDITOR='your_favourite_editor' 
    116115}}} 
    117116