Skip to content

Latest commit

 

History

History
executable file
·
37 lines (29 loc) · 1.24 KB

File metadata and controls

executable file
·
37 lines (29 loc) · 1.24 KB

Contributing to RedCalibur

Thank you for considering contributing to RedCalibur! We welcome contributions from the community to make this toolkit better.

How to Contribute

  1. Fork the Repository: Create a fork of this repository on GitHub.
  2. Clone the Repository: Clone your fork to your local machine.
    git clone https://github.com/your-username/RedCalibur.git
  3. Create a Branch: Create a new branch for your feature or bug fix.
    git checkout -b feature/your-feature-name
  4. Make Changes: Implement your changes and commit them with clear commit messages.
    git commit -m "Add feature: your feature name"
  5. Push Changes: Push your changes to your fork.
    git push origin feature/your-feature-name
  6. Submit a Pull Request: Open a pull request to the main repository.

Guidelines

  • Follow the coding standards used in the project.
  • Write clear commit messages.
  • Add tests for new features.
  • Ensure all tests pass before submitting a pull request.

Reporting Issues

If you encounter any issues, please report them in the Issues section of this repository.

Thank you for your contributions!