heroku 使用笔记

来源:互联网 发布:网络教育统考难么 编辑:程序博客网 时间:2024/05/21 06:17
1, 如何checkout 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


原创粉丝点击