英文:
Is github tracking source branch changes in pull request after pull request was merged?
问题
GitHub会追踪我在这个拉取请求中对我的存储库/分支进行的任何新更改吗?
英文:
I have created a GitHub pull request from master/main branch instead of creating from my dedicated branch by mistake.
This pull request is already merged and closed.
Would GitHub track any new changes I would make to my repository/branch in this pull request?
答案1
得分: 1
GitHub 会跟踪我在此拉取请求中对我的存储库/分支所做的任何新更改吗?
不会在这个(已合并和关闭的)PR中,但你可以:
- 拉取(以更新
origin/main
) - 将你的专用分支重新基于
origin/main
(git switch dedicated; git rebase origin/main
) - 推送并从那里创建你的PR。
英文:
> Would GitHub track any new changes I would made to mine repository/branch in this pull request?
Not in this (merged and closed) PR, but you can:
- fetch (in order to update
origin/main
) - rebase your dedicated branch on top of origin/main (
git switch dedicated; git rebase origin/main
) - push and create your PR from there.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论