Skip to content

Latest commit

 

History

History
62 lines (39 loc) · 2.3 KB

CONTRIBUTING.md

File metadata and controls

62 lines (39 loc) · 2.3 KB

Contributing Guidelines

Thank you for considering contributing to our project! We appreciate your time and effort in helping make this project better.

Ways to Contribute

There are several ways you can contribute to our project:

  1. Reporting Bugs: If you encounter any bugs or issues with the project, please report them using our issue tracker.

  2. Suggesting Enhancements: Have an idea to improve the project? Feel free to suggest enhancements through the issue tracker as well.

  3. Writing Code: You can contribute by writing code to fix bugs, implement new features, or improve existing ones. Just follow the guidelines outlined below.

How to Contribute Code

  1. Fork the repository to your GitHub account.

  2. Clone the forked repository to your local machine:

    git clone https://github.com/tylerlight071/FurEver_Friends.git
    
  3. Create a new branch for your contribution:

    git checkout -b feature-or-fix-name
    
  4. Make your changes in the new branch.

  5. Test your changes to ensure they work as expected.

  6. Commit your changes with clear and descriptive commit messages:

    git commit -m "Brief description of the changes"
    
  7. Push your changes to your forked repository:

    git push origin feature-or-fix-name
    
  8. Create a pull request (PR) against the main branch of the original repository.

  9. Provide a clear title and description for your PR, explaining the purpose and scope of your changes.

  10. Once submitted, your PR will be reviewed by project maintainers. Please be patient during the review process.

Code Style and Standards

  • Follow the coding style and standards used in the project.
  • Write clear and concise code with appropriate comments where necessary.
  • Ensure your code is properly tested.

Code of Conduct

Please note that we have a Code of Conduct that we expect all contributors to adhere to. By participating in this project, you agree to abide by its terms.

Questions and Support

If you have any questions or need support, feel free to reach out to us through email or by opening an issue in the repository.

Thank you for your contributions!