- Checkout to
dev
branch -git checkout dev
- Pull the latest changes in the repo -
git pull
- Create your branch -
git checkout -b <your-branch-name>
- Make necessary changes in config files and schemas
- Commit your changes -
git commit -m '<your-commit-message>'
- Push changes to the repo -
git push --set-upstream origin <your-branch-name>
- Create Pull Request in the Github UI from
<your-branch-name>
todev
branch - Wait until all checks are passed; make fixes if needed
- Merge Pull Request to
dev
branch - Go to corresponding development stand and validate that your updates are applied correctly
- Create Pull Request in the Github UI from
dev
tomain
branch - Merge Pull Request and check updates on production stand
Preview state for these assets is not available. So, follow next steps:
- Checkout to
main
branch -git checkout main
- Pull the latest changes in the repo -
git pull
- Create your branch -
git checkout -b <your-branch-name>
- Make necessary changes in SVG-files
- Commit your changes -
git commit -m '<your-commit-message>'
- Push changes to the repo -
git push --set-upstream origin <your-branch-name>
- Create Pull Request in the Github UI from
<your-branch-name>
tomain
branch - Wait until all checks are passed; make fixes if needed
- Merge Pull Request to
main
branch