Versions Compared

Key

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

...

At any one time, you can compare this 'demo' branch to any version of DSpace. For example, to compare 'demo' to DSpace 15.8.2 5 run:

Code Block
cd ~/dspace-src
git checkout demo
git diff dspace-15.8.25
Warning

WARNING: If you make direct config edits to ~/dspace/config/ you can expect that they may be overwritten in future (unless you also copy them to ~/dspace-src/dspace/config/)
You have been warned! Again, if your changes don't make it to ~/dspace-src/ then THEY WILL BE LOST during the next update!

...

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-36.0 (or 'git merge master')

...

Code Block
cd ~/dspace-src
# Build DSpace using demo.properties and build Mirage 2 theme
mvn -U clean package -Denv=demo -Dmirage2.on=true

Push out Updates

...