shubhgurukul.github.io

This is my resume.

Setup git account locally to push repo back to your profile

$ git config --global user.email "your-email@mail.com"

$ git config --global user.username ShubhGurukul # your github user name

Clone the repository

$ git clone https://github.com/ShubhGurukul/shubhgurukul.github.io.git

Make changes Add all files which is changed

$ git add README.md

OR for all changes 👇

$ git add .

$ git commit -m "updating readme.md"

$ git push -u origin main