标签: git github rebase pull-request
如何从另一个分支推送请求请求?
情况:
答案 0 :(得分:1)
据我了解,您在本地和远程上有不同的分支名称。
在这种情况下,使用
git push --force origin <your-local-branch>:<remote-target-branch>
应使用当前状态remote-target-branch覆盖your-local-branch。
remote-target-branch
your-local-branch