如何在限制 ssh 的防火墙后面通过 https 访问 heroku git
Heroku 部署在我家里就像一个魅力。
但我的办公室网络限制 ssh,这会阻止命令“git push heroku master” 有没有办法使用 heroku git 存储库的 https url 来推送我的应用程序。
Heroku deployment works like a charm in at my home.
But my office network restricts ssh which blocks the command "git push heroku master"
Is there a way to use a https url of the heroku git repository to push my app.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您只能通过 ssh 推送到 heroku git。
更新(根据 @ryanbrainard 评论):
HTTP Git 现已正式发布 https://blog.heroku.com/archives/2014/ 12/5/http_git_now_generally_available
You can push to heroku git only through ssh.
Update(per @ryanbrainard comment):
HTTP Git is now GA https://blog.heroku.com/archives/2014/12/5/http_git_now_generally_available
Heroku 工具带的这个插件允许您推送 https:
https://github.com/ddollar/heroku-push
This plugin for heroku toolbelt allows you to push over https:
https://github.com/ddollar/heroku-push
Heroku 现在支持 GIT over HTTP(这是测试版功能)。检查 https://devcenter.heroku.com/articles/http-git。 https://git.heroku.com/{app-name}.git 将是您的存储库的 URL。
Heroku now supports GIT over HTTP (this is a beta feature). Check https://devcenter.heroku.com/articles/http-git. https://git.heroku.com/{app-name}.git will be the URL for your repo.
Heroku 现在拥有完整的 HTTP Git 支持,并且是新应用程序的默认选项。如果要将现有应用程序从 SSH Git 更改为 HTTP Git,请运行:
然后像平常一样推送:
有关详细信息,请参阅 文档。
Heroku now has full HTTP Git support and is the default option for new apps. If you want to change an existing app from SSH Git to HTTP Git, run:
and then push like normal:
For details, see the documentation.