Skip to content

Latest commit

 

History

History
65 lines (40 loc) · 1.84 KB

File metadata and controls

65 lines (40 loc) · 1.84 KB

Contributing to the Project

Thank you for considering contributing to our project! Here are some guidelines to help you get started.

How to Contribute

  1. Fork the Repository: Create a personal fork of the repository on GitHub.

  2. Clone the Repository: Clone your fork to your local machine.

    git clone https://github.com/stangri/pbr.git
  3. Switch to the latest version Branch: make sure to switch to the latest version branch before making any changes, for example.

    git checkout 1.1.8
  4. Create a Branch: Create a new branch for your changes.

    git checkout -b feature-branch
  5. Make Changes: Make your changes to the codebase.

  6. Commit Changes: Commit your changes with a clear and concise commit message.

    git commit --signoff -m "Description of changes"
  7. Push Changes: Push your changes to your fork.

    git push origin feature-branch
  8. Create a Pull Request: Open a pull request to the main repository.

Code of Conduct

Please adhere to our Code of Conduct in all your interactions with the project.

Contributing to the documentation

The repository containing documentation for this project can be located at https://github.com/stangri/docs.openwrt.melmac.ca

Reporting Issues

If you find a bug or have a feature request, please open an issue on GitHub.

Style Guide

  • Follow the existing code style.
  • Write clear and concise commit messages.
  • Include comments and documentation where necessary.

Testing

Ensure that your changes do not break existing tests and add new tests for new features.

Feedback

We appreciate your contributions and will review your pull request as soon as possible. Thank you for helping improve the project!