Changes between Version 34 and Version 35 of Developers/SVN_QuickReference
- Timestamp:
- 2017-12-08T19:18:44+01:00 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Developers/SVN_QuickReference
v34 v35 74 74 === Commit 75 75 76 Extract with `svn+http` protocol or see section [#Switchfromusertodeveloper 'Switch from user to developer'].76 Extract with `svn+http` protocol or see section '[#Switchfromusertodeveloper Switch from user to developer]'. 77 77 78 78 {{{#!sh 79 79 svn 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 directory83 84 {{{#!sh85 # 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'90 80 }}} 91 81 … … 108 98 }}} 109 99 100 ==== 101 102 Then in the appropriate directory 103 110 104 {{{#!sh 111 105 # Commit and write the log message (ticket link #.... and so on) in your editor … … 114 108 # or directly from the command line of the shell session 115 109 svn 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) 112 export SVN_EDITOR='your_favourite_editor' 113 # for csh " " " "" , " "" " "" "" ~/.login ) 114 setenv SVN_EDITOR='your_favourite_editor' 116 115 }}} 117 116