DEV Community

Cover image for How To Contribute in Hacktoberfest
Ranjit Odedra
Ranjit Odedra

Posted on • Updated on

How To Contribute in Hacktoberfest

follow the steps to make a contribution

I considered that you already registered to hacktoberfest
if note click HERE

before you start working on any issue you have to ask owner of that repo that I am work on this particular issue.

assign

then maintainer will assign you that task

1. Fork The repo for first contribution

fork

for your 2nd , 3rd and 4th contribution each time you have to sync changes instead of fork
synk

2. Clone Repo to your PC

write this command in your terminal

git clone https://github.com/<your-username>/trendit.git
Enter fullscreen mode Exit fullscreen mode

for your 2nd , 3rd and 4th contribution each time you have to pull instead of clone

git pull
Enter fullscreen mode Exit fullscreen mode

3. Make changes that mentioned in issue

issue

4. push to you github account

Add all files

git add .
Enter fullscreen mode Exit fullscreen mode

Commit and provide message about what you did

git commit -m "message about what you did"
Enter fullscreen mode Exit fullscreen mode

push the code

git push origin main
Enter fullscreen mode Exit fullscreen mode

if you get any error in this steps then search in Stackoverflow
Hopefully you will find solution.

5. make pull request from your repo

Image description

Image description

Image description

Image description

6. check in Hacktoberfest site

Image description

after your pull request is merged you will this timer in hacktoberfest website

after seven days your pull request will be count

Now you are ready to get your goodies
be in first 40000

follow - @ranjitodedra

Top comments (1)

Some comments may only be visible to logged-in visitors. Sign in to view all comments.