General

  eZ Systems Website
  Technical documentation
  Editor documentation

This Documentation contains:
 
Technical documentation:



⚠ WARNING ! This documentation is deprecated !

Please go to the current Technical Documentation

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: minor command fix

...

Info

When updating from 16.02 or earlier to 16.04 or later

Starting from 16.04, the main meta repository was split in two:

  • ezstudio with clean installer
  • ezstudio-demo with demo content and design

Before pulling the latest version you have to change your git remote repository. There are two ways to do this:

1. The quick way: simply replace repository name in config file for example using sed (this way is useful if you added any remotes):

sed -ie 's/ezsystems\/ezstudio/ezsystems\/ezstudio-demo/g' .git/config

2. Using git remote:

  • list your remote repositories:

git remote -vorigin https://github.com/ezsystems/ezstudio

  • copy the url containing ezsystems/ezstudio
  • replace the url using git:

git remote set-url origin https://github.com/ezsystems/ezstudio-demo.git

Next, pull the latest changes:

git pull

Now, manually remove the contents of the app/cache/ folder:

rm -rf app/cache/*

...

Once you are done, inspect the file, either using an editor or by running git diff composer.json. You may also test the file's sanity with composer validate, and test the dependencies by running composer update --dry-run. (will output what it would do to dependencies, without applying the changes.

Once finished, run git add composer.json.

...