我是新手,我想将应用程序从github克隆到heroku。我试过这个命令
heroku git:clone git@github.com:[Creator]/[APPname].git [HerokuappDirectory]
但我得到Resource Not Found
。
答案 0 :(得分:6)
使用git clone git@github...
正常克隆回购。然后cd进入目录并运行heroku create [an optional app name]
。那么你将有两个Git遥控器设置,一个用于repo(原点),一个用于heroku app(heroku)。然后'git push heroku master'将部署到heroku。