1, 如何checkout heroku上的代码,修改并提交
git clone git://heroku的地址
提交:
git push heroku master
2, 使用heroku初始化项目的步骤
git clone git://heroku的地址
提交:
git remote add heroku git@heroku.com:newname.git
然后运行如下命令
git push heroku master
2, 使用heroku初始化项目的步骤
git init
git add .
git commit -m "init tianyaphoto project"
heroku create tianyaphoto
git push heroku master