| Version | Date | Notes | By |
|---|---|---|---|
| 0.1 | 2022-05-04 | Initial release | BRB |
Before any client update, you must first update each module's master branch and tag it using Git. You may use apps like GitHub Desktop or GitKraken, but this guide will be using console commands. Make sure that there are no translations left to merge into the backend's development branch.
/var/www/sgi-backend/.cd /var/www/sgi-backend/
git checkout develop
git pull
git add CHANGELOG.md
git commit -m "Updated changelog"
git push
git checkout master
git pull
git merge develop
git push
git tag 1.0.0 (check latest tag)
git push origin 1.0.0 (check latest tag)