有人在我的Github回購庫上創建了一個請求。它大多看起來不錯,但我必須做一些小的改動才能讓它通過我的持續集成服務器。如何修改別人的Github拉取請求?
請求是GitHub的屏幕上的指示,以「檢討」運行:
git checkout -b otheruser-fix_somebug
git pull https://github.com/otheruser/myrepo.git fix_somebug
然後我做了我的變化,並在本地提交。然而,當我去跑git push
,git的告訴我:
fatal: The current branch otheruser-fix_somebug has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin otheruser-fix_somebug
,我做到了,但我的更改不會拉入請求下呈現,而是根據反映在我的GitHub庫分支otheruser-fix_somebug
的副本,未連接到拉取請求。
我該如何調用git push
來使更改顯示在拉取請求上?
IIUC拉請求只能包含來自提交請求的分支的更改。 – jingx
他們是否分叉回購並在貨叉上打開公關? – osowskit