Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是新手,我想将一个应用程序从 github 克隆到 heroku。我试过这个命令
heroku git:clone git@github.com:[Creator]/[APPname].git [HerokuappDirectory]
但我明白了 Resource Not Found。
Resource Not Found
像往常一样克隆 repo git clone git@github... 。然后 cd 进入目录并运行heroku create [an optional app name]. 然后,您将设置两个 Git 遥控器,一个用于 repo(原点),一个用于 heroku 应用程序(heroku)。然后'git push heroku master'将部署到heroku。
git clone git@github...
heroku create [an optional app name]