当我们fork了一份上游代码后经过一段时间想将fork的分支提交到master的某一分支可以通过以下命令完成
假设已经设置好origin和upstream了
此时更新上游master到fork分支
git checkout origin/<branch>
git fetch upstream
git merge upstream/<branch>
同步上下游代码后
commit some changes
此时git status
显示Your branch is ahead of 'origin/<branch>' by x commit
然后通过gh命令提交pr
gh pr create --fill -B <branch> --repo <upstream project>/<repo>
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。