Promote and revert changes

Robots, types and snippets can now be synchronized with the development Management Console from Design Studio using the upload function or from theManagement Console interface using the Robots tab. At this point, you can make changes to the production Management Console only by promoting an object version from development to production.

Use the following command to merge from the development branch into the production (master) branch.

# cd example
# git checkout development
# git pull
# git checkout master
# git merge –-no-ff development
# git push

If you need to revert changes, do so on the development branch by reverting commits to a previous good state and then merging the reverted commits to the production (master) branch.