Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 1.53 KB

CONTRIBUTING.md

File metadata and controls

59 lines (42 loc) · 1.53 KB

Contribution Guidelines

Table of Contents

  1. How to Contribute
  2. Pull Request Guidelines
  3. Issues

How to Contribute

  1. Fork the Repository:

    • Click the "Fork" button on the top right of this repository.
  2. Clone your Fork:

    • Clone the repository to your local machine:
      git clone https://github.com/Pavith19/HackerRank-30-Days-of-Code-Solutions.git
  3. Create a New Branch:

    • Create a new branch for your feature or bug fix:
      git checkout -b feature/your-feature
  4. Make Changes:

    • Implement your changes and ensure they work as expected.
  5. Commit Changes:

    • Commit your changes with a descriptive commit message:
      git commit -m "Add your descriptive commit message here"
  6. Push Changes:

    • Push your changes to your forked repository.
      git push origin feature/your-feature
  7. Open a Pull Request:

    • Open a pull request on the original repository.

Pull Request Guidelines

  • Provide a descriptive title and explanation of your changes.
  • Follow the project's coding standards.
  • Include relevant tests for your changes.
  • Update the documentation if needed.
  • Ensure your branch is up-to-date with the main branch before submitting the pull request.

Issues

  • Open an issue for bug reports, feature requests, or general feedback.
  • Follow the issue template for faster resolution.

Thank you for contributing to the Project!