Home

Awesome

Hacktoberfest2023

This is a beginner-friendly project to help you get started with your hacktoberfest. If you don't know where to start, feel free to watch the videos linked below, and read the contribution rules. Happy Learning <3 💙 !!

P.S. Star ⭐ and Share this repository, if you had fun!! 😍

📌 Videos 📽️:

Contribution Rules 📌:

Mandatory Step :

Getting Started 🚀:

Open terminal

git clone https://github.com/TechHack3/Hacktoberfest2023.git
cd Hacktoberfest2023
git checkout -b my-new-branch
git add .
git commit -m "Relevant message"
git push origin my-new-branch
<br>

Add your name in contributors List

contributors/contributorsList.js

Avoid Conflicts {Syncing your fork}

An easy way to avoid conflicts is to add an 'upstream' for your git repo, as other PR's may be merged while you're working on your branch/fork.

git remote add upstream https://github.com/TechHack3/Hacktoberfest2023

You can verify that the new remote has been added by typing

git remote -v

To pull any new changes from your parent repo simply run

git merge upstream/master

FAQs (Frequently Asked Questions)

We will do our best to merge as much as possible from everyone. However, time is limited <3
<br>