创建拉取请求后在浏览器中打开拉取请求链接

发布于 2025-01-10 08:00:22 字数 1539 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

内心荒芜 2025-01-17 08:00:22

您将无法通过挂钩脚本自动执行此操作,因为没有 post-push 挂钩。如果您安装 github cli,您可以创建一个类似于以下内容的别名:

git config --global alias.pushpr '!git push --set-upstream origin HEAD && gh pr create -w'

现在,如果您运行 git Pushpr 它将把当前分支推送到 origin 中同名的分支,然后在浏览器中打开拉取请求页面。


正如 Matt 在评论中指出的那样,gh pr 实际上会自动为您完成这一切。忘记别名并运行:

gh pr create -w

它将把你的分支推送到 github 并打开拉取请求页面。

You won't be able to automate this via a hook script because there is no post-push hook. If you install the github cli, you can create an alias that looks something like:

git config --global alias.pushpr '!git push --set-upstream origin HEAD && gh pr create -w'

Now if you run git pushpr it will push your current branch up to a branch of the same name in origin and then open the pull request page in your browser.


As matt points out in the comment, gh pr will actually do this for you all by itself. Forget about the alias and just run:

gh pr create -w

And it will push your branch up to github and open the pull request page.

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