Git tracks changes in your project.
GitHub stores your project online.
cd your_project_folder
git init
git status
git add .
git commit -m "first commit"
Go to: https://github.com
Click New Repository
git remote add origin your_project_url
git push origin main
Your project is now live on GitHub ๐
git init โ start tracking git add . โ stage or track files git commit โ save changes git push โ upload to GitHub ๐ Learn how to create a Telegram bot