Skip to content

DareDevilStudios/HACKTOBERFEST

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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


Steps For Contribution

Step 1 - Fork this repository

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.

Step 2 - Clone the forked repository

git clone <url_of_repository>

Step 3 - Create a branch

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

Step 4 - Make changes and commit

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"

Step 5 - Push the changes to GitHub

Push your changes to GitHub using the git push command:

git push -u origin <your-branch-name>

Step 6 - Submit your changes for review

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.