当我们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>

hhhan
13 声望1 粉丝