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 47 and Version 48 of Developers/SVN_QuickReference


Ignore:
Timestamp:
2018-06-05T02:42:26+02:00 (5 years ago)
Author:
nicolasmartin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Developers/SVN_QuickReference

    v47 v48  
    2525 
    2626{{{#!sh 
    27 svn sw 'URL[@PEGREV] [PATH]' 
     27svn sw 'URL[@PEGREV] [WCPATH]' 
    2828}}} 
    2929 
     
    4242}}} 
    4343 
    44 === Add a new item / Remove a [remote] item 
     44=== Add a new item / Remove a item 
    4545 
    4646{{{#!sh 
    47 svn add 'PATH...' 
    48 svn del '{PATH...,URL...}' 
     47svn {add,del} 'WCPATH' 
    4948}}} 
    5049 
    51 === Info / Status 
     50=== Info / Status / Log 
    5251 
    5352Display information about a local or remote item 
    5453 
    5554{{{#!sh 
    56 svn info '{PATH...,URL...}[@PEGREV]' 
     55svn info 'WCPATH[@PEGREV]' 
    5756}}} 
    5857 
     
    6059 
    6160{{{#!sh 
    62 svn status [-[qu]] '[PATH...]' 
     61svn status [-[qu]] '[WCPATH]' 
     62}}} 
     63 
     64Display all commits performed to your working repository since its creation 
     65 
     66{{{#!sh 
     67svn log --verbose --stop-on-copy 'WCPATH' 
    6368}}} 
    6469 
     
    6671 
    6772{{{#!sh 
    68 svn revert [--depth {empty,files,immediates,infinity}] 'PATH...' 
     73svn revert [--depth {empty,files,immediates,infinity}] 'WCPATH' 
    6974}}} 
    7075 
     
    7681 
    7782{{{#!sh 
    78 svn pset svn:keywords Id 'PATH...' 
     83svn pset svn:keywords Id 'WCPATH' 
    7984}}} 
    8085 
     
    8792 
    8893{{{#!sh 
    89 svn {pset,pdel} svn:executable 'PATH...' 
     94svn {pset,pdel} svn:executable 'WCPATH' 
    9095}}} 
    9196 
     
    98103 
    99104{{{#!sh 
    100 svn merge 'PATH1@REV1 PATH2@REV2 [PATH]' 
     105svn merge 'WCPATH1@REV1 WCPATH2@REV2 [WCPATH]' 
    101106}}} 
    102107 
     
    148153}}} 
    149154 
    150 === Information about the sources 
    151  
    152 To get information such as the PATH/URL you are working on, .i.e. trunk, branches .. and so on 
    153  
    154 {{{#!sh 
    155 cd ./NEMO && svn info 
    156 }}} 
    157  
    158 To get all commits/''revision'' performed/''associated'' on/''to'' your working repository since its creation 
    159  
    160 {{{#!sh 
    161 cd ./NEMO && svn log --verbose --stop-on-copy 
    162 }}} 
     155---- 
    163156 
    164157With the new layout of the repository, some may encounter downloading or updating issues with