如何使用Mercurial部署到Heroku?

时间:2012-03-06 20:31:54

标签: mercurial heroku

我已经使用Mercurial很长一段时间了,我想开始使用Heroku作为部署平台。但是,他们似乎只支持Git。有没有人知道Heroku如何使用Mercurial?

2 个答案:

答案 0 :(得分:26)

安装Hg-Git mercurial plugin后,在存储库的.hg/hgrc添加别名:

[alias]
push-heroku = push git+ssh://git@heroku.com:<app name>.git

您现在可以将您的应用程序推送到Heroku:

hg push-heroku

默认情况下请注意Heroku does not link your repository name with the remote Heroku app name

答案 1 :(得分:2)

您可以使用Hg-Git Mercurial Plugin