Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.82 KB

contributing.md

File metadata and controls

57 lines (37 loc) · 1.82 KB

Contributing Guidelines

Welcome to the C_CPP-Projects repository! We appreciate your interest in contributing. Before you get started, please take a moment to review the following guidelines.

Table of Contents

  1. How to Contribute
  2. Submitting Changes
  3. Code Style
  4. Issues and Bug Reports
  5. Feature Requests

How to Contribute

  1. Fork the repository.

  2. Clone your forked repository to your local machine:

    git clone https://github.com/your-username/C_CPP-projects.git
    
  3. Create a new branch for your changes:

    git checkout -b feature/your-feature
    
  4. Make your changes and commit them with a clear and descriptive commit message:

    git add .
    git commit -m "Add your changes here"
    
    
  5. Push your changes to your fork:

    git push origin feature/your-feature
    
  6. Open a pull request (PR) against the main branch of the original repository.

Submitting Changes

Please ensure that your pull request includes:

  • A clear and concise description of the changes you've made.
  • Any relevant screenshots or documentation updates, if applicable.

Code Style

Follow the established code style for C and C++ in this project. If there's no specific style guide mentioned, try to match the existing code as closely as possible.

Issues and Bug Reports

If you encounter any issues or find a bug, please open an issue on the GitHub repository. Include a detailed description of the problem, steps to reproduce it, and any relevant information about your environment.

Feature Requests

If you have ideas for new features or improvements, feel free to open an issue to discuss them. We appreciate your input!

Thank you for contributing to C_CPP-Projects! 🚀