Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 2.14 KB

CONTRIBUTING.md

File metadata and controls

45 lines (30 loc) · 2.14 KB

Contributing to goji

Thank you for your interest in contributing to goji! We appreciate your time and effort in making this project better. Before you start contributing, please take a moment to review the following guidelines.

Code of Conduct

Please note that this project adheres to the Code of Conduct. We expect all contributors to follow the code of conduct to ensure a positive and inclusive community.

How to Contribute

Fork the repository: Start by forking the goji repository to your GitHub account. Clone the repository: Clone the forked repository to your local machine using the following command:

git clone https://github.com/your-username/goji.git

Create a new branch: Create a new branch for your contribution. It's recommended to name the branch related to the feature or bug you are working on. For example:

git checkout -b feature/your-feature

Make your changes: Make the necessary changes or additions to the codebase. Ensure that your code follows the project's coding style and conventions. Write tests: If possible, include tests for your changes to maintain code coverage. We highly encourage including tests with your pull request. Commit and push: Commit your changes and push them to your forked repository.

git commit -m "Your commit message"
git push origin feature/your-feature

create a pull request: Go to the original goji repository on GitHub and create a pull request from your branch to the main branch. Provide a clear and concise description of your changes in the pull request.

Review and address feedback: Your pull request will be reviewed by the project maintainers. Address any feedback or suggestions provided during the review process. Merge and celebrate: Once your pull request is approved, it will be merged into the main branch. Congratulations on your contribution!

Feedback and Discussions

We value your feedback and suggestions for goji. If you have any ideas, questions, or concerns, please open an issue or reach out to us via email. Your feedback is important to us and will help us improve the project.

Thank you for your contributions to goji!