Contribution Guidelines
These guidelines instruct how to submit issues and contribute to code or documentation to Archipelo/top project. Another way to contribute includes participating in discussion and answering questions on our Archipelo Slack workspace.
- Contribution Guidelines
Code contributions
If you have fixed a bug or implemented an enhancement, you can contribute your changes via GitHub's pull requests. This is not restricted to code, on the contrary, fixes and enhancements to documentation and tests alone are also very valuable.
Preconditions for code contribution are having a GitHub account, installing Git and having write access to the project.
It is suggested for each engineer to use a GPG key to sign their commits for higher security. Learn how to set it up.
Branching
Whenever you're going to start a new piece of work, you need to create a
new branch from the main
one. To do so, please follow these steps:
- make sure that you are synchronized with the
main
branch by executinggit pull
- create new branch with
git branch ticket_number-username/branch-name
or create and checkout to it withgit checkout -b ticket_number-username/branch-name