我已经使用Mercurial很长一段时间了,我想开始使用Heroku作为部署平台。但是,他们似乎只支持Git。有没有人知道Heroku如何使用Mercurial?
答案 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)