Skip to content

Latest commit

 

History

History
57 lines (35 loc) · 1.96 KB

CONTRIBUTING.md

File metadata and controls

57 lines (35 loc) · 1.96 KB

Contributing Guidelines - ASCII-To-Binary

Thank you for considering contributing to the "ASCII-To-Binary" project.

Contribution Principles

  • Adhere to the existing coding style and conventions of the project.
  • Write clean and concise code with meaningful variable and function names.
  • Include comments and documentation where necessary to explain complex logic or functionality.

Step-by-Step Contribution

  1. Fork this project's GitHub repository to your own GitHub account.

  2. Clone the forked repository to your local machine:

    git clone https://github.com/berkaygediz/ASCII-To-Binary.git
  3. Navigate to the project's root directory:

    cd hm-console
  4. Create a new branch for your feature or bug fix, and name it descriptively:

    git checkout -b feature/new-feature
  5. Make your changes and ensure they conform to the coding standards.

  6. Test your changes thoroughly and run existing tests to avoid introducing new issues.

  7. Write a clear and concise commit message that describes your changes:

    git commit -m "Add new feature"
  8. Push your changes to your fork:

    git push origin feature/new-feature
  9. Create a "Pull Request" on GitHub to merge your changes into the main repository. Provide a detailed description of your changes, explaining the problem you're addressing and any necessary context.

  10. Be responsive to any feedback or comments provided during the review process, and be prepared to make further changes if required.

  11. Once your "Pull Request" is approved, your changes will be merged into the main repository.

Reporting Issues

If you encounter bugs or issues with "ASCII-To-Binary" please report them on the GitHub issue tracker. Include comprehensive details, such as steps to reproduce the issue and the platform on which you encountered it.