New Order Submission
A set of rules to keep in mind:
-
Develop in
stage/*
orprod/*
branch. Why:This way, all the work is done in isolation on a separate branch rather than on the main branch. This will allow you to create multiple pull requests without confusion. You can continue development without polluting the
stg
orproduction
branch with potentially unstable and unfinished code. To learn more... -
The branch should look like this
stage/bug/TASK
(example:stage/bugfix/nor-111
) if it's bug; andstage/feature/TASK
(example:stage/feature/nor-111
) if it's feature. -
Never push commits directly to the
stg
orproduction
branches. Create a Pull Request.Why:
This way, team members will receive a notification that work on a new feature has been completed. It will also facilitate the code review process and provide a forum for discussing the proposed feature.
-
The commit must ALWAYS include a link to the task.
-
A good commit guide and following it will make working with Git and collaborating with other developers easier. Here are some rules (source)
STAGE
- branch -
stg
- view - 5334 in 989 table (link)
PRODUCTION
- branch -
production
- view - 5375 in 989 table (link)