We all have played this game, haven't we. So, the basic knowledge about this repository is that a snake moves to eat its food and dies if it eats itself. There are several mazes and levels to choose from and try getting a high score. There is also an instructions tab which enables players to know how to play. Visit website
The steps to follow to contribute to any projects:
-
Firstly, install git.
-
This will create a copy of this repository in your account.
Fork this repository.
-
This will create a copy of this repository in your local machine. Now You are ready to make changes as per your issue.
git clone https://github.com/SubhamKarmakar24/snake.git
-
git remote add upstream https://github.com/SubhamKarmakar24/snake.git
-
This will also avoid any merge conflicts while committing new changes
git pull upstream main
-
Always create new branch
git checkout -b <feature-name>
-
git add .
-
git status
-
Write commit message as "Small Message"
git commit -m "Write a meaningfull but small commit message"
-
git push origin <branch-name>
-
Just hit the create a pull request button, you must write a PR message to clarify why and what are you contributing