如何在限制 ssh 的防火墙后面通过 https 访问 heroku git

发布于 2024-12-25 12:39:10 字数 126 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

内心激荡 2025-01-01 12:39:10

您只能通过 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

提赋 2025-01-01 12:39:10

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

半衬遮猫 2025-01-01 12:39:10

Heroku 现在支持 GIT over HTTP(这是测试版功能)。检查 https://devcenter.heroku.com/articles/http-githttps://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.

So尛奶瓶 2025-01-01 12:39:10

Heroku 现在拥有完整的 HTTP Git 支持,并且是新应用程序的默认选项。如果要将现有应用程序从 SSH Git 更改为 HTTP Git,请运行:

$ heroku git:remote

然后像平常一样推送:

$ git push heroku master

有关详细信息,请参阅 文档

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:

$ heroku git:remote

and then push like normal:

$ git push heroku master

For details, see the documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文