devilbox/docs/maintenance/checkout-different-devilbox-release.rst
Eric Mueller ac040416cf Another note about git pull before changing branch (#552)
* Another note about git pull before changing branch

* Update checkout-different-devilbox-release.rst
2019-03-24 19:49:28 +01:00

32 lines
1.0 KiB
ReStructuredText

.. include:: /_includes/snippets/__ANNOUNCEMENTS__.rst
.. _checkout-different-devilbox-release:
***********************************
Checkout different Devilbox release
***********************************
You now have the devilbox downloaded at the latest version (``git master branch``). This is also recommended as it receives
bugfixes frequently. If you however want to stay on a stable release, you need to check out a
specific ``git tag``.
Lets say you want your devilbox setup to be at release ``v1.0.1``, all you have to do is to check out
this specific git tag.
.. code-block:: bash
host> cd path/to/devilbox
# Ensure you have latest from remote
host> git fetch
# Switch to this release
host> git checkout v1.0.1
.. warning::
Whenever you check out a different version, make sure that your ``.env`` file is up-to-date
with the bundled ``env-example`` file. Different Devilbox releases might require different
settings to be available inside the ``.env`` file. Refer to the next section for how to
create the ``.env`` file.