Changes between Version 39 and Version 40 of Developers
- Timestamp:
- 2018-06-04T20:57:58+02:00 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Developers
v39 v40 45 45 creating a [/newticket?type=Enhancement ticket] where you will present your proposal. 46 46 47 If your patch is quite modest (one or few routines involved), \\ 48 you can simply attached in the ticket the output of any diff command. 49 47 50 Keep in mind that, despite the help we can offer, a certain amount of work from \\ 48 51 you will be need to implement your developments into the source code. … … 52 55 53 56 After the global reorganisation of the repository, it is now advisable to entirely download the new default development organisation in your 54 * browser:/NEMO/trunk: the main development branch55 * browser:/NEMO/branches56 * /NEMO/branches/YYYY: yearly development branches intended to be merged into trunk by the end of the year57 * /NEMO/branches/{NERC,UKMO}: restricted to58 * browser:/NEMO/releases: all official NEMO releases, '''only the last one is maintained'''57 * [browser:/NEMO/trunk]: the main development branch 58 * [browser:/NEMO/branches] 59 * NEMO/branches/YYYY: yearly development branches intended to be merged into trunk by the end of the year 60 * NEMO/branches/{NERC,UKMO}: restricted to British operational activities 61 * [browser:/NEMO/releases]: all official NEMO releases, '''only the last one is maintained''' 59 62 60 63 {{{#!sh 61 # One step (download directly a copy with write access)64 # One step method (download directly a copy with write access) or 62 65 svn co svn+ssh://'login'@forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/NEMO [...] 63 # or 2 steps(download a read-only copy and switch to developer when a commit is required)66 # Two steps method (download a read-only copy and switch to developer when a commit is required) 64 67 svn co http://forge.ipsl.jussieu.fr/nemo/svn/NEMO [...] 68 ... 65 69 svn sw --relocate http://forge.ipsl.jussieu.fr svn+ssh://'login'@forge.ipsl.jussieu.fr/ipsl/forge/projets 66 70 }}}