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

Changes between Version 6 and Version 7 of Developers/GoodPractices


Ignore:
Timestamp:
2018-11-09T01:58:27+01:00 (5 years ago)
Author:
nicolasmartin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Developers/GoodPractices

    v6 v7  
    33Last edition on '''[[Wikinfo(changed_ts)]]''' by '''[[Wikinfo(changed_by)]]''' 
    44 
    5 [[PageOutline(2, , inline, unnumbered)]] 
     5[[PageOutline(2)]] 
    66 
    77== Set up a proper development environment once and for all 
     
    1414- __Simple SVN commands (UNIX-like)__ without tedious `svn+ssh` URL scheme: create your dev branch locally and commit it as you want to the repository instead of creating the dev branch remotely on the repository and then downloading it to start working. 
    1515- __Put an end at the branches scattering__, no more multiple working copies but now all needed developments handled in one location 
     16 
     17== Use the robust syntax to refer to a specific SVN revision 
     18 
     19With the new layout of the repository, some may encounter downloading or updating issues with the following syntax "-r REV URL". \\ 
     20Use instead the more robust syntax 'URL@REV' 
     21 
     22See ​http://svnbook.red-bean.com/en/1.7/svn.advanced.REVs.html for more. 
    1623 
    1724== Manage SVN external references according to your needs