Thank you very much if you have decided to contribute to our project. We follow very simple and clear open-source research community accepted guidelines for contributing. The guideline instructions divided into sections depending on the part of the project you want to contribute.
Create a new branch, if you want to add something new.
Recommended naming branch is <type>/<name of stuff>.
Commits are added according to conventional commits. Those
<type>(<scope>): <body>.
The <type> field must take one of these values:
featto add new functionalityfixto fix a bug in the projectrefactorfor code refactoring, such as renaming a variabletestto add tests, refactor themstructfor changes related to a change in the structure of the project (BUT NOT CODE), for example, changing folder locationscifor various ci/cd tasksdocsfor changes in documentation
The <body> field contains the gist of the changes in the present imperative in English without the dot in
at the end, the first word is a verb with a small letter.
Examples:
- Good: "feat: add module for future BST implementations"
- Bad: "Added module for future BST implementations."
- Fork this repository using your GitHub account.
- Install
gitand clone your forked copy of therepo. - Build project following build instructions in README.md file, make sure everything is ok.
- Run unit-tests following instructions in README.md file, make sure all tests passing.
- Implement new feature or fix existing one in the source code.
- Commit your changes.
- Open a pull-request following repository template rules.
- Wait for review from developers of the project.
- Fix major and minor issues if presented.
- Get your work merged into
main!
- Fork this repository using your GitHub account.
- Install
gitand clone your forked copy of therepo. - Edit code documentation in source files and/or in docs folder files.
- Commit your changes.
- Open a pull-request following repository template rules.
- Wait for review from developers of the project.
- Fix major and minor issues if presented.
- Get your work merged into
main!
- Don't use merge, only rebase (to keep a linear commit history)
- Do not change other people's branches unless absolutely necessary
- Recheck your commit history before creating a pull request
- Check you're on the right branch, never commit directly in main
Forbidden to merge your pull request into the branch yourself.
If you click on the green button, then make sure that it says REBASE AND MERGE
The review takes place in the form of comments to pull requests, discussions in the team chat and personal communication.