Skip to content

Latest commit

 

History

History
88 lines (52 loc) · 1.88 KB

CONTRIBUTING.md

File metadata and controls

88 lines (52 loc) · 1.88 KB

Contributing to Code-Play-Pygame

Thank you for considering contributing to Code-Play-Pygame! We appreciate your interest in helping beginner developers learn game development with Pygame.

How to Contribute

1. Fork the Repository

  • Click the "Fork" button at the top right of the repository page to create your own copy.

2. Clone Your Fork

Run the following command in your terminal:

Copy code

`git clone https://github.com/your-username/Code-Play-Pygame.git`

3. Create a New Branch

Use the following command to create a new branch:

Copy code

`git checkout -b your-branch-name`

4. Make Your Contribution

  • You can contribute in various ways, such as:
    • Adding game templates.
    • Sharing tutorials and resources.
    • Improving documentation.

Ensure your contributions are beginner-friendly!

5. Commit Your Changes

When you've made your changes, commit them with a meaningful message:

Copy code

`git commit -m "Brief description of your changes"`

6. Push to Your Fork

Push your changes to your forked repository:

Copy code

`git push origin your-branch-name`

7. Submit a Pull Request

  • Go to the original repository and click on "Pull Requests".
  • Click on "New Pull Request".
  • Select your branch and submit the pull request.

Guidelines

  • Please follow the coding style used in the repository.
  • Make sure to test your changes before submitting.
  • If you're adding new resources or templates, provide a brief description.

Reporting Issues

If you find a bug or have a suggestion, please create an issue in the Issues section of the repository.

Thank You!

We look forward to your contributions and helping the community grow!