coding-bot Go to your project folder cd path/to/your/project Initialize git if not already git init Add files git add . git commit -m "First commit" Create repo on GitHub (via website or CLI) and then connect: git remote add origin https://github.com/YOUR-USERNAME/YOUR-REPO.git git branch -M main git push -u origin main