Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

As these files are huge it is considerably faster to move the files remotely on the SVN server instead of doing a local svn move followed by an SVN commit of those files back to the server, for example:

Code Block
dist$ mkdir release/roller/roller-5/v5.0.4
dist$ svn commit release/roller/roller-5/v5.0.4 -m "Folder for new 5.0.4 release"
dist$ svn move https://dist.apache.org/repos/dist/dev/roller/roller-5.1/v5.01.41 https://dist.apache.org/repos/dist/release/roller/roller-5/v5.0.4.1

Once done, do an svn update from https://dist.apache.org/repos/dist so both your local dev and release folders will reflect the above change.

7. Update the website to point to the new files

...