我正在使用heroku在python-django中创建Web应用程序。我需要在heroku中使用现有的git存储库。我的存储库名称是first-blog
。我正在使用时
git clone https://github.com/heroku/first-blog.git
我得到了
Cloning into 'first-blog'...
Username for 'https://github.com': AparnaBalagopal
Password for 'https://AparnaBalagopal@github.com':
remote: Repository not found.
fatal: repository 'https://github.com/heroku/first-blog.git/' not found
此。 我将我的github连接到heroku帐户。如何将此存储库连接到heroku中的应用程序。
答案 0 :(得分:1)
您尝试克隆的存储库不存在,尝试在本地计算机上克隆它会得到相同的结果。
你可能想克隆https://github.com/AparnaBalagopal/first-blog.git
答案 1 :(得分:0)
您好像正在尝试克隆一个不存在的Git存储库,这就是您看到该错误的原因。正如其他一些用户已经提到的那样,你需要确保首先获得正确的Github URL,然后你就可以克隆存储库没问题。
一旦您在本地克隆了存储库,就可以通过执行以下操作将其部署到Heroku:
cd <directory-name>
heroku create
git push heroku master
heroku open
以上命令将:
如果您的项目需要,您可能还需要安装Heroku插件(如Postgres等)。您可以通过运行:
来完成此操作heroku addons:create <addon-name>
应该这样做!