Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.82 KB

File metadata and controls

53 lines (37 loc) · 1.82 KB

CONTRIBUTING.md

Contributing to the C++ To-Do CLI Application

Thank you for considering contributing to the C++ To-Do CLI application! We welcome contributions from the community. Please follow the guidelines below to ensure a smooth contribution process.

How to Contribute

  1. Fork the Repository

    • Click the "Fork" button at the top right of the repository page to create your own copy of the project.
  2. Clone Your Fork

    • Clone your forked repository to your local machine:
      git clone https://github.com/your-username/cpp-todo-cli.git
      
  3. Create a New Branch

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

    • Make your changes in the codebase. Ensure that your code adheres to the project's coding standards and conventions.
  5. Build and Test Locally

    • Follow the instructions in the README.md to build the project and run tests to ensure everything works as expected.
  6. Commit Your Changes

    • Commit your changes with a descriptive message:
      git commit -m "Add a brief description of your changes"
      
  7. Push to Your Fork

    • Push your changes to your forked repository:
      git push origin your-feature-branch
      
  8. Submit a Pull Request

    • Go to the original repository and click on the "Pull Requests" tab. Click "New Pull Request" and select your branch. Provide a clear description of your changes and submit the pull request.

Code of Conduct

Please adhere to the project's code of conduct. Be respectful and considerate in your interactions with other contributors.

Questions?

If you have any questions or need assistance, feel free to open an issue in the repository or reach out to the maintainers.

Thank you for contributing!