git push heroku main
выходит ошибка:error: src refspec main does not match any
error: failed to push some refs to 'https://git.heroku.com/'
git commit -am "My first bot"
выдаёт это:On branch master
nothing to commit, working tree clean
main
, а master
, соответственно нужно выполнять git push heroku master
git add .
, а потом git commit -m "My first bot"
, скорее у тебя вообще файлы не добавлены в индекс гита. Ещё перед коммитом можешь выполнять git status
)