snake
snake copied to clipboard
A snake game built using Vanilla JS and HTML CSS
Snake
About
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
Contribution Guidelines
The steps to follow to contribute to any projects:
-
Firstly, install git.
-
Fork this repository
This will create a copy of this repository in your account.
Fork this repository.
-
Clone the 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 -
Add a upstream link to main branch in your cloned repo
git remote add upstream https://github.com/SubhamKarmakar24/snake.git -
Keep your cloned repo upto date by pulling from upstream
This will also avoid any merge conflicts while committing new changes
git pull upstream main -
Create your feature branch
Always create new branch
git checkout -b <feature-name> -
Track your changes
git add . -
Check for your changes.
git status -
Commit all the changes
Write commit message as "Small Message"
git commit -m "Write a meaningfull but small commit message" -
Push the changes for review
git push origin <branch-name> -
Create a PR on Github.
Just hit the create a pull request button, you must write a PR message to clarify why and what are you contributing