there are documentation of how our development should work
- create a branch with a name simular to the issue name
- develop the feature and push commits to your branch
- keep your branch uptodate with the develop branch by rebasing your branch
-
git checkout develop && git pull -
git checkout <your_branch> && git rebase develop
-
- open a
PRwith the same name as the issue you are working on - Add a brief enough description to completly understand what that
PRis about - (*) Add a screenshot gif, or video if applicable
- link the issue you have worked on in the
PRyou just opened - when finished just ask for a code review to merge your code into develop