cd /path/to/your-bot-folder git init git add . git commit -m "First commit - Upload bot" git remote add origin https://github.com/YOUR_USERNAME/YOUR_REPOSITORY.git git branch -M main git push -u origin main
cd /path/to/your-bot-folder
git init
git add .
git commit -m "First commit - Upload bot"
git remote add origin https://github.com/YOUR_USERNAME/YOUR_REPOSITORY.git
git branch -M main
git push -u origin main