Thank you for considering contributing to CheatGUI! Here's how you can help:
-
Fork the Repository: Click on the fork button at the top right corner of the CheatGUI repository page to create a copy of this repository on your GitHub account.
-
Clone Your Fork: Clone your fork to your local machine to start making changes.
git clone https://github.com/your-username/cheatgui.git cd cheatgui
-
Create a New Branch: Always create a new branch for your changes. This keeps the main branch clean and your pull request focused.
git checkout -b your-branch-name
-
Make Your Changes: Implement your fixes, features, or improvements. Be sure to follow the project's coding standards.
-
Commit Your Changes: Once you're happy with the changes, commit them to your branch.
git commit -am "Add a descriptive commit message"
-
Push to Your Fork: Push your changes to your fork on GitHub.
git push origin your-branch-name
-
Submit a Pull Request: Go to the CheatGUI repository and click on "Pull Requests". Then click on "New Pull Request". Select your branch and submit your request with a clear description of your changes.
Before submitting your pull request, please ensure:
- All new features or significant changes are accompanied by appropriate documentation updates.
- Your code matches the coding style of the project.
Thank you for your contributions!