Skip to content

Latest commit

 

History

History
52 lines (30 loc) · 1.11 KB

File metadata and controls

52 lines (30 loc) · 1.11 KB

🤝 Contributing Guidelines

Thank you for your interest in contributing to Game_Scripts!
We welcome everyone — from beginners to experienced developers — to contribute small, fun games.


🪜 How to Contribute

  1. Fork this repo

  2. Clone your fork

    git clone https://github.com/<your-username>/Game_Scripts.git
    cd Game_Scripts
    
  3. Create a branch

    git checkout -b add-your-game
    
  4. Add your game inside the correct folder (e.g. /java, /python, /javascript, /cpp).

  5. Include a small README.md file

  6. Update INDEX.md with your game’s entry

  7. Commit and push

     git add .
     git commit -m "Added new game: Rock Paper Scissors in Java"
     git push origin add-your-game
    
  8. Open a Pull Request on GitHub.

✅ Contribution Rules

Each PR should add only one game or fix one issue.

The game must be original, not plagiarized.

Add meaningful commit messages.

💡 Suggesting New Games

To suggest a new game idea:

* Open a GitHub Issue using the “Game Idea” template.

* Include details about the game and language.