Skip to content

Latest commit

 

History

History
86 lines (52 loc) · 1.56 KB

contribution.md

File metadata and controls

86 lines (52 loc) · 1.56 KB

CONTRIBUTING GUIDELINES

Are you worried about how to contribute? 😟 So here you go! 🙂

How to Contribute?

For a successful contribution you must have to follow these steps:

  • Fork the Repo and create a Branch for any Issue that you are working upon.
  • Create a Pull Request which will be promptly reviewed and suggestions would be added to improve it.
  • Add Screenshots to help us know what changes you have done.

How to make a pull request?

1. Fork this repository. Click on the symbol at the top right corner.


2. Clone the forked repository.

git clone https://github.com/yourusername/Snake_Game.git


3. Navigate to the project directory.

cd Snake_Game.git

4. Create a new branch and check it:

git branch <YourBranchName>
git checkout <YourBranchName>

5. Make changes in source code.


6. Stage your changes and commit

git add .

git commit -m "<your_commit_message>"

Use apporopriate emojis for your commit messages from Gitmoji


7. Push your local commits to the remote repo.

git push origin YourBranchName

8. Create a PR


9. Congratulations:sparkles::sparkles: You've made your contribution.:tada:



After this, maintainer of the project will review the changes and will merge your PR if he found it good, otherwise he will suggest the required changes.

Thanks for your help in improving the project! 😄