Skip to content

Latest commit

 

History

History
60 lines (42 loc) · 1.73 KB

CONTRIBUTING.md

File metadata and controls

60 lines (42 loc) · 1.73 KB

How to Contribute

We welcome contributions to improve this project. Below are guidelines to help you get started:

Getting Started

  1. Fork the Repository

  2. Clone Your Fork

    git clone https://github.com/your-username/eprllib.git
    cd repository-name
  3. Create a Branch

    git checkout -b feature-branch-name

Making Changes

  1. Implement Your Changes

    • Make your changes to the codebase, ensuring you follow the project's coding style and guidelines.
  2. Test Your Changes

    • Run existing tests and write new tests if necessary to cover your changes.
    • Ensure all tests pass before submitting your contribution.
  3. Commit Your Changes

    git add .
    git commit -m "Description of your changes"
  4. Push to Your Fork

    git push origin feature-branch-name

Submitting a Pull Request

  1. Create a Pull Request

    • Navigate to the original repository and click the "New Pull Request" button.
    • Ensure your pull request includes a clear description of the changes and any related issues.
  2. Review Process

    • Your pull request will be reviewed by project maintainers.
    • Be responsive to feedback and be prepared to make necessary changes.

Code of Conduct

By contributing, you agree to abide by our Code of Conduct.

Additional Resources

Thank you for your contributions!