如何在我的个人Github帐户上推送我的Heroku应用程序?

时间:2017-06-22 00:05:43

标签: heroku github repository

我在Heroku上创建了一个应用程序。该应用程序被推送到我的git@heroku.com: [My-project-name] .git。

我想将此应用程序推送到我自己的Github帐户。我该怎么办?

顺便说一下,做:

git clone git@heroku.com:[My-project-name].git 

回复:

Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights

1 个答案:

答案 0 :(得分:0)

如果您已登录Heroku帐户。请使用以下命令将现有应用程序克隆到本地计算机:

heroku git:clone -a your_app_name
cd your_app_name

这将在您当前的工作目录中克隆您的应用,然后导航到your_app_name。然后你可以通过以下方式添加你的github repo的遥控器:

git remote add origin url_to_your_github_repo

最后运行以下命令将代码推送到github:

git push origin master