🛠️ Setting Up The Project
1️⃣ 🍴Fork It: Fork the project to create your own copy.
2️⃣ 💻Clone Locally: Open Git Bash in your desired folder and clone your forked copy.
$ git clone https://github.com/<your-account-username>/<your-forked-project>.git3️⃣ 📂Navigate: Move into the project folder.
$ cd <your-forked-project-folder>
4️⃣ 🔗Add Upstream: Link to the original repository.
$ git remote add upstream https://github.com/<author-account-username>/<original-project>.git5️⃣ 👀Check Remotes: Verify the remote connections.
$ git remote -v6️⃣ ⬇️Stay Updated: Keep your main branch in sync with the original repository.
$ git pull upstream main1️⃣ 🌿Branch Out: Create a new branch with a meaningful name.
$ git checkout -b <your_branch_name>2️⃣ ✍️Make Changes: Work your magic on the codebase.
3️⃣ 📁Track Changes: Add your modifications.
$ git add .4️⃣ 🚚Commit: Commit your changes with a descriptive message.
$ git commit -m "<commit message>"5️⃣ 🚀Push Changes: Push your changes to your forked repository.
$ git push -u origin <your_branch_name>6️⃣ 🌐Create Pull Request: Head to GitHub, navigate to your forked repo, and initiate a pull request by clicking "Compare and pull request".