git checkout devTest
git checkout -b feature/my-feature` OR `git checkout -b bugfix/my-bugfix
git add .
git commit -m "m"
git push -u origin feature/my-feature
git checkout devUnstable
git merge feature/my-feature
If you have a bug fix for your own branch and don't want to mess with the branch's base code, checkout your branch and branch from it to add your code. After adding the bug fix, merge to your original branch.
Ask someone else to review the code and approve the request. The person who will review your code will test the code on devTest before approving.
Link to how to create a PR or ask Mr. P
Cad Folder: https://drive.google.com/drive/folders/1OndHazU2Yi-rOM8mMpD8EuxK0BzbkC_d?usp=sharing