我有一个monorepo,我正在尝试将其推送到Heroku。我正在使用heroku-buildpack-monorepo
buildpack。我添加了文档中记录的APP_BASE
属性。我按照说明添加了buildpack。当我尝试按文档状态git push git@heroku.com:hamm-api master
推送时,出现此错误:
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我已经将密钥添加到github,所以我知道我可以访问。我认为我使用的是错误的url:name
。
当我运行git remote -v
时,这是我在remote
上看到的内容:
hamm-api https://git.heroku.com/weird-heroku-name-21695.git (fetch)
hamm-api https://git.heroku.com/weird-heroku-name-21695.git (push)
我运行了错误的push
命令吗?