使用HTTP-GIT部署应用程序,我正在遵循以下步骤Deploying with Git注意:使用Windows 10
文件夹结构:
- Project
- .git
- website
- run.py
打开提示符,然后输入以下命令:cd Project
,git init
,git add .
和
git commit -m "Deploy App"
此后,heroku create
,当我使用git push heroku master
时返回此错误:
致命:'heroku'似乎不是致命的git存储库:可以 无法从远程存储库读取。
请确保您具有正确的访问权限和存储库 存在。
在这里enter link description here找到了解决方案
我使用了git remote add heroku git@heroku.com:website.git
现在我收到以下错误:
权限被拒绝(公钥)。致命的:无法从远程读取 存储库。
我不确定,但是如果我使用的是http-git,则不需要公共密钥。我该如何解决?