Changes between Version 38 and Version 39 of Developers/SVN_QuickReference
- Timestamp:
- 2018-06-05T01:11:33+02:00 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Developers/SVN_QuickReference
v38 v39 45 45 }}} 46 46 47 If the `svn:keywords` property is not defined, don't forget to set it in order to get the functionality of `$Id` keyword replacement with the commit informations48 49 {{{#!sh50 svn pset svn:keywords Id 'path/to/the'/new_routine.f9051 }}}52 53 47 === Add a new file / Remove a file 54 48 55 49 {{{#!sh 56 svn add 57 svn del 50 svn add 'Path/to/the/file/to/add' 51 svn del 'Path/to/the/file/to/delete' 58 52 }}} 59 53 … … 66 60 svn merge -r 1196:1214 http://forge.ipsl.jussieu.fr/nemo/svn/trunk/NEMO/OPA_SRC/SBC/sbcssm.F90 67 61 }}} 62 63 == Manage versioned properties 64 65 === `svn:keywords` for commit infos 66 67 If the `svn:keywords` property is not defined on a NEMO routine, set it in order to get the functionality of `$Id` keyword replacement in all committed files with the commit informations (URL, author, date and revision) 68 69 {{{#!sh 70 svn pset svn:keywords Id 'path/to/the'/new_routine.'{f90, F90, h90, sh}' 71 }}} 72 73 === `svn:mime-type` for syntax highlighting 74 75 Most of versioned files \\ 76 If you want to apply a specific 77 78 === `svn:executable` for scripts 79 80 {{{#!sh 81 svn pset svn:executable 'path/to/the/script'.sh 82 }}} 83 84 {{{#!sh 85 svn pdel svn:executable 'path/to/the/script'.sh 86 }}} 87 88 89 === `svn:externals` for 90 68 91 69 92 == Merging