Changes between Version 39 and Version 40 of HowToSVN


Ignore:
Timestamp:
Aug 12, 2012, 2:41:10 AM (12 years ago)
Author:
neteler
Comment:

+Moving modules between trunk and Addons repository

Legend:

Unmodified
Added
Removed
Modified
  • HowToSVN

    v39 v40  
    138138
    139139{{{
    140 cd raster
     140cd raster/
    141141svn copy https://svn.osgeo.org/grass/grass/trunk/raster/r.watershed r.watershed.mfd
    142142}}}
     
    146146Note: grass-addons/ is part of the same repository as grass/, so it's possible to copy, rename, merge, etc between grass-addons/ and grass/.
    147147
    148 
     148=== Moving modules between trunk and Addons repository ===
     149
     150To shift modules between trunk and Addons repository, use you first to copy to maintain the original's history, then delete:
     151
     152'''1) From trunk to Addons:'''
     153
     154{{{
     155# run in trunk:
     156
     157cd scripts/
     158svn copy i.fusion.brovey https://svn.osgeo.org/grass/grass-addons/grass7/imagery/
     159svn rm i.fusion.brovey
     160}}}
     161
     162Then you need to update the related parent Makefile(s).
     163
     164
     1652) From Addons to trunk:
     166
     167{{{
     168# run in trunk:
     169
     170cd scripts/
     171svn copy https://svn.osgeo.org/grass/grass-addons/grass7/imagery/i.pansharpen i.pansharpen
     172}}}
     173
     174Then you need to 'svn rm' the module in Addons and to update the related parent Makefile(s).
    149175=== Non-recursive checkout ===
    150176