heroku 使用笔记

1, 如何checkout heroku上的代码,修改并提交
git clone git://heroku的地址
提交:
git remote add heroku [email protected]: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


你可能感兴趣的:(git)