1
我是一個新手,我想克隆一個應用程序從github到heroku。我試過這個命令克隆一個github應用程序到heroku
heroku git:clone [email protected]:[Creator]/[APPname].git [HerokuappDirectory]
但是我得到Resource Not Found
。
我是一個新手,我想克隆一個應用程序從github到heroku。我試過這個命令克隆一個github應用程序到heroku
heroku git:clone [email protected]:[Creator]/[APPname].git [HerokuappDirectory]
但是我得到Resource Not Found
。
克隆回購正常與git clone [email protected]
。然後cd進入目錄並運行heroku create [an optional app name]
。然後,你將有兩個Git遠程設置,用於回購(起源),一個用於heroku應用程序(heroku)。然後'git push heroku master'將部署到heroku。