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


Ignore:
Timestamp:
2018-06-22T12:20:54+02:00 (6 years ago)
Author:
nicolasmartin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Developers/SVN_QuickReference

    v48 v49  
    1717 
    1818{{{#!sh 
    19 svn copy trunk branches/'Current_year'/'Name_of_the_new_branch' 
     19svn copy trunk@${PEGREV} branches/$year/'dev_r'${PEGREV}_$NameOfNewBranch 
    2020}}} 
    2121 
     
    2525 
    2626{{{#!sh 
    27 svn sw 'URL[@PEGREV] [WCPATH]' 
     27svn sw URL[@$PEGREV] [$WCPATH] 
    2828}}} 
    2929 
     
    3535 
    3636{{{#!sh 
    37 svn copy trunk/src/OCE/module_example branches/'Current_year'/'dev_branch'/'PATH/routine.{f90,F90,h90}' 
     37svn copy src/OCE/module_example src/$PATH/$routine.{f90,F90,h90} 
    3838}}} 
    3939 
     
    4545 
    4646{{{#!sh 
    47 svn {add,del} 'WCPATH' 
     47svn {add,del} $WCPATH 
    4848}}} 
    4949 
     
    5353 
    5454{{{#!sh 
    55 svn info 'WCPATH[@PEGREV]' 
     55svn info $WCPATH[@$PEGREV] 
    5656}}} 
    5757 
     
    5959 
    6060{{{#!sh 
    61 svn status [-[qu]] '[WCPATH]' 
     61svn status [-[qu]] [$WCPATH] 
    6262}}} 
    6363 
     
    6565 
    6666{{{#!sh 
    67 svn log --verbose --stop-on-copy 'WCPATH' 
     67svn log --verbose --stop-on-copy $WCPATH 
    6868}}} 
    6969 
     
    7171 
    7272{{{#!sh 
    73 svn revert [--depth {empty,files,immediates,infinity}] 'WCPATH' 
     73svn revert [--depth {empty,files,immediates,infinity}] $WCPATH 
    7474}}} 
    7575 
     
    8181 
    8282{{{#!sh 
    83 svn pset svn:keywords Id 'WCPATH' 
     83svn pset svn:keywords Id $WCPATH 
    8484}}} 
    8585 
     
    9292 
    9393{{{#!sh 
    94 svn {pset,pdel} svn:executable 'WCPATH' 
     94svn {pset,pdel} svn:executable $WCPATH 
    9595}}} 
    9696 
     
    103103 
    104104{{{#!sh 
    105 svn merge 'WCPATH1@REV1 WCPATH2@REV2 [WCPATH]' 
     105svn merge $WCPATH1@$REV1 $WCPATH2@$REV2 [$WCPATH] 
    106106}}} 
    107107 
     
    158158 
    159159{{{#!sh 
    160 svn co -r REV URL 
     160svn co -r $REV $URL 
    161161}}} 
    162162 
     
    164164 
    165165{{{#!sh 
    166 svn co URL@PEG (REV ~ PEG) 
     166svn co $URL@$PEGREV 
    167167}}} 
    168168