我克隆我的repo并改变一些东西并提交,
但是当我想像教程一样推动时:
git push heroku master
它告诉我错了:
fatal: 'heroku' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我确定我已登录,
那么如何正确推送我的仓库并进行部署呢?
答案 0 :(得分:0)
来自Git参考(http://gitref.org/remotes/#remote):
“因此,每次要与其同步时,您不必使用远程存储库的完整URL,Git会为您感兴趣的每个远程存储库URL存储别名或昵称。您使用git remote命令管理您关心的远程回购列表。“
您可以使用以下方法检查您的git仓库是否存在名为“heroku”的远程名称:
git remote -v
如果它不存在,您需要先添加它,然后按如下方式推送更新:
git remote add heroku git@heroku.com:appname.git
其中appname应该是您应用的名称。