Versions Compared

Key

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

...

If you are upgrading to the next stable version of DSpace, you can use git merge to help you merge all changes.

WARNING THE FOLLOWING IS UNTESTED! PLEASE UPDATE WHEN WE UPGRADE TO 3.0-RC1!!

For Example:

Code Block
cd ~/dspace-src
# Pull down all latest changes
git checkout master
git pull
# Merge them into our "demo" branch
git checkout demo
git merge dspace-3.0 (or 'git merge master')

...

Code Block
cd ~/dspace-src
mvn -U clean package

Push out Updates

...