This is a repository made for people to start contributing in the open source and take part in hacktoberfest 2022
Participate in Hacktoberfest and get a chance to win amazing Swags!!
first of all you should learn what is GIT and GITHUB and how to push data to a repository. to get started in GIT watch this video : https://www.youtube.com/watch?v=SWYqp7iY_Tc
Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.
git clone <url_of_repository>
Change the current working directory to the cloned repo.
Now create a new branch with the below naming convention:
git switch -c add-your-name
Add those changes you made with the git add
command:
git add -A
Now commit those changes using the git commit
command:
git commit -m "Add <your-name> to contributors list"
Push your changes to GitHub using the git push
command:
git push -u origin <your-branch-name>
If you go to your repository page on GitHub you will see a compare & pull request
button. Click that button.
And submit the pull request.
Soon the reviewer will merge the branch into main
.