issue #109 document how to change branches

This commit is contained in:
Mike Macgirvin 2023-10-03 18:52:01 +11:00
parent f262b776b7
commit 543afc04ea

View file

@ -88,6 +88,12 @@ web server platforms.
git clone https://codeberg.org/streams/streams.git mywebsite
- Check out the 'release' branch. This is recommended as it is well tested and stable.
git checkout release
- If you are a developer and interested in working with the absolute latest code changes, you might wish to checkout the 'dev' branch instead. This contains experimental code and is often not as well tested. Use at your own risk.
- Pull in external libraries with composer. Leave off the --no-dev
option if you are a developer and wish to install addditional CI/CD tools.
@ -128,6 +134,14 @@ web server platforms.
util/add_addon_repo https://codeberg.org/streams/streams-addons.git zaddons
- This should pull the 'release' branch by default (mentioned earlier). If you are in doubt,
cd extend/addon/zaddons
git checkout release
cd mywebsite
- replace withh a different code branch name or repository nickname if your situation requires.
- For keeping the addon tree updated, you should be on your top level website
directory and issue an update command for that repository.