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