Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1.55 KB

CONTRIBUTING.md

File metadata and controls

41 lines (26 loc) · 1.55 KB

Contributing

Thank you for considering contributing to CheatGUI! Here's how you can help:

  1. 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.

  2. 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
  3. 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
  4. Make Your Changes: Implement your fixes, features, or improvements. Be sure to follow the project's coding standards.

  5. Commit Your Changes: Once you're happy with the changes, commit them to your branch.

    git commit -am "Add a descriptive commit message"
  6. Push to Your Fork: Push your changes to your fork on GitHub.

    git push origin your-branch-name
  7. 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!