此过程与管理github中的项目类似,即是普通的git配置
安装 Heroku Toolbelt, 里面包含了 msygit Foreman,以及heroku的命令行界面
1、首先在heroku上新建一个项目 git地址为 git@heroku.com:loveqingqing.git
2。添加ssh-key 到heroku上 参考 https://devcenter.heroku.com/articles/keys
启动git的bash界面 运行 ssh-keygen -t rsa 默认的名字即可,然后输入heroku账户的密码 生成一个key 。我放在了默认
下一步就是添加 ssh-key到 heroku上
在gitbase里面运行
登陆heroku
heroku login 输入 邮箱以及密码即可
添加 key
heroku
keys:add 如果不存在该命令的话 则 使用gem 安装 gem install heroku
由于我之前使用其他的git
管理项目已经有了ssh-key,这里会让我选择 针对heroku账号生成的key 我选择 heroku的序号
添加完成之后
注册的账号会收到邮件,提示已经添加key。也可以到https://dashboard.heroku.com/account
ssh-key处手动滴添加key
下一步就是使用 clone 了
运行 git clone git@heroku.com:loveqingqing.git
接下来回让你输入 密码
即可完成clone
参考博客 https://devcenter.heroku.com/articles/keys
https://devcenter.heroku.com/articles/getting-started-with-nodejs#dyno-sleeping-and-scaling
http://www.gmarwaha.com/blog/2011/05/18/heroku-trouble-with-windows-and-ssh-keys/