🎉First off All, thanks for taking the time out of your schedule and deciding to contribute here!👍
If you're new to contributing and have no idea about working with repositories, be sure to check GitHub docs to getting started from GitHub may also be helpful to refer.
If you don't have git on your machine, install it.
- Fork the Repo and star ( for better reach)
git init
git clone <Https link>
- It will download all file to your desktop
- Now make the changes
git status
- It will show all the changes you made
- now add the file by using
git add filename
orgit add .
- commit it by meaningful message
git commit -m "your message"
- now you are ready to push but before that pull all the changes first
git pull https://github.com/Surajbokde/web-development-Resource.git
- now push the changes
git push origin
- now make a pull request and add screenshot of changes you did.