如果github告诉我“通过推送到主分支上添加更多提交......”,如何向某人发送给我的拉取请求添加提交?

时间:2018-05-31 21:22:18

标签: git github push git-push pull-request

有人给我发了拉请求。 Github描述了如何签出分支并测试这些变化:

git checkout -b usernameOfPRSender-master master
git pull https://github.com/usernameOfPRSender/projectname.git master

这就是我所做的。现在我从本地拉取请求中获得了更改,可以查看它们并在本地测试它们。

我必须做一些更改,所以我执行了所需的更改并提交了它们。

我现在如何推送拉取请求?

Github在拉取请求页面上告诉我:

Add more commits by pushing to the master branch on usernameOfPRSender/projectname.

我现在该怎么办?

1 个答案:

答案 0 :(得分:1)

我做了

git push origin usernameOfPRSender-master:master

似乎有效(如here所述)。

它合并了拉​​取请求和我的更改中的所有更改,并关闭了拉取请求。