All development is done on GitHub: https://github.com/BAILOOL/ANMS-Codes
master
branch is where all up-to-date stable code is maintained. At this moment it combinesmaster
anddevelop
branches in one as there is no need for releases.feature/feature-name
is a branch for any improvement, bugs, refactoring or documentation. This branch is the one used to push changes tomaster
through Pull Requests (PR).
- Fork the repository.
- Clone it.
- Install Super-Linter:
docker pull github/super-linter:latest
- Make desired changes to the code.
- Verify new changes pass Super-Linter:
docker run -e RUN_LOCAL=true -e VALIDATE_CPP=false -e VALIDATE_JSCPD=false -v /path/to/local/codebase:/tmp/lint github/super-linter
- Push code to your forked repo.
- Create pull request.