148 | | |
| 148 | === Moving modules between trunk and Addons repository === |
| 149 | |
| 150 | To 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 | |
| 157 | cd scripts/ |
| 158 | svn copy i.fusion.brovey https://svn.osgeo.org/grass/grass-addons/grass7/imagery/ |
| 159 | svn rm i.fusion.brovey |
| 160 | }}} |
| 161 | |
| 162 | Then you need to update the related parent Makefile(s). |
| 163 | |
| 164 | |
| 165 | 2) From Addons to trunk: |
| 166 | |
| 167 | {{{ |
| 168 | # run in trunk: |
| 169 | |
| 170 | cd scripts/ |
| 171 | svn copy https://svn.osgeo.org/grass/grass-addons/grass7/imagery/i.pansharpen i.pansharpen |
| 172 | }}} |
| 173 | |
| 174 | Then you need to 'svn rm' the module in Addons and to update the related parent Makefile(s). |