Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 2.04 KB

CONTRIBUTING.md

File metadata and controls

61 lines (38 loc) · 2.04 KB

Contributing to DSA Practice in C++

Thank you for considering contributing to this repository! Your help is greatly appreciated.

How to Contribute

Reporting Bugs

If you find a bug, please report it by opening an issue. Include as much detail as possible to help us understand and resolve the issue quickly.

Suggesting Enhancements

If you have ideas for new features or improvements, feel free to open an issue with your suggestions. We welcome all ideas that can help improve the repository.

Submitting Pull Requests

  1. Fork the Repository: Click the "Fork" button at the top right of this page to create a copy of this repository on your GitHub account.

  2. Clone Your Fork: Clone your forked repository to your local machine using the following command:

    git clone https://github.com/your-username/your-forked-repo.git
  3. Create a Branch: Create a new branch for your changes:

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

  5. Commit Changes: Commit your changes with a descriptive commit message:

    git commit -m 'Add some feature'
  6. Push to GitHub: Push your changes to your forked repository:

    git push origin feature-branch
  7. Open a Pull Request: Go to the original repository on GitHub and open a pull request. Provide a clear and descriptive title and description for your pull request.

Code Style

Please ensure your code adheres to the following guidelines:

  • Follow the existing code style and structure.
  • Comment your code where necessary to explain your logic.
  • Write clear and concise commit messages.

Code of Conduct

By participating in this project, you agree to abide by the Code of Conduct. Please read it to understand the expectations for contributing to this repository.

Getting Help

If you need help or have any questions, feel free to reach out by opening an issue or contacting the repository maintainers.

Thank you for your contributions!

Happy coding!