Github pull request without old commits

前端 未结 1 961
半阙折子戏
半阙折子戏 2020-12-14 22:05

I have forked project at github. I make one commit and pull request it. This commit was approved. Then i make second commit and pull request it too. But in pull request ther

相关标签:
1条回答
  • 2020-12-14 22:34

    Merge back from the upstream repository, or create the new pull request on a new branch.

    Or rebase on top of upstream:

    git remote add upstream (url-for-upstream-repository)
    git fetch upstream
    git rebase upstream/master
    git push -f origin
    (do new pull request on website)
    
    0 讨论(0)
提交回复
热议问题