A Bahasa Rojak translator, developed for a diploma final year team project
- Create a new branch out from
master
for every new feature or changes that you want to add to the project. If a feature is based on another WIP feature, create the branch under the WIP branch. Never ever modify themaster
branch directly and merge prematurely. Branches should be named using the following format:[weekNo]_[uniqueNo]_[brief_task_description]
E.g:
- w1_1_add_button_functionality ✔
- w2_2_change_theme_font_type ✔
- w3_1_fix_previous_mistake ✘ (Not unique id if there is already an ID 1 branch and uninformative description)
-
It is recommended that you commit your changes to the branch you've created after you work on something for some time to prevent losing progress. It doesn't matter if it still isn't complete, just commit and keep a backup in this repo.
-
When a feature/change is completed, create a pull request (PR) for the feature to be merged into the main branch. Branches can only be merged if the PR is approved by majority of the team and if there are no other subtasks assigned for the issue.
-
Periodically review and resolve the statuses of pull requests made by other members that have been completed during your free time to hasten development.