Development Procedure - mata-elang-stable/DevelopersGuide GitHub Wiki
git clone -branch <BRANCH_NAME> <REPOSITORY_URL>
- See the detail of Coding in the Coding Standards.
- See the detail of Test in the Test Requirements.
git add <FILE> | <DIRECTORY>
git commit -m '<COMMIT_MESSAGE>'
- Make sure to add a comment when you commit.
- Please describe the changes in detail in the comments.
- Merge the source codes changed by the other developers and push to the original repository.
git fetch
git push
- Send the pull request to committers of Mata Elang.
- The committer will check for the changed source code and give feedback to the developer if necessary.
After passing the review, the source code will be merged into master branch and released to the public.