Thank you for considering contributing to the Tetris ESP32 project! We welcome all contributions, big or small. By contributing, you help improve and grow this project, making it better for everyone. Here's how you can get involved:
Start by forking the repository to your GitHub account:
- Click the "Fork" button at the top of this repository.
- Clone the forked repository to your local machine:
git clone https://github.com/your-username/t-display-s3-tetris.git
Create a branch for your changes to keep your work organized:
git checkout -b feature/your-feature-name
Use descriptive branch names, e.g., bugfix/game-crash
, feature/new-game-level
, etc.
- Ensure that your code is clean and follows consistent styling with the rest of the project.
- Test thoroughly to confirm that your changes don't introduce new issues.
- Add documentation/comments if you introduce new features or modify existing functionality.
Write clear, concise, and meaningful commit messages:
git add .
git commit -m "Add new feature to enhance gameplay speed"
Push your branch to your forked repository:
git push origin feature/your-feature-name
Create a pull request (PR) from your forked repository branch to the main branch of this repository:
- Go to your forked repository on GitHub.
- Click the "New Pull Request" button.
- Ensure that your changes are described clearly in the pull request description. Reference any relevant issues if applicable.
Please follow our Code of Conduct to ensure a respectful and inclusive environment for everyone in our community.
Found a bug? Want to suggest an improvement? Please open an issue:
- Go to the Issues tab.
- Click "New Issue."
- Provide a detailed description, steps to reproduce (if applicable), and any other helpful information.
- Check out Discussions to connect with the community.
- Ask questions, share insights, and collaborate with others.
By contributing to this project, you agree that your contributions will be licensed under the MIT License.
Thank you for helping make the Tetris ESP32 project better!