我怎样才能获取我不拥有的未合并拉取请求?

时间:2016-07-20 13:54:39

标签: git github

我在Windows上使用Windows和GitHub。

首先,我创建了一个这样的存储库:

1repo

然后我右键单击并单击打开git-shell:

2opening shell

这是我想作为基础的主分支:

https://github.com/FeroxRev/Pokemon-Go-Rocket-API

然后我将此命令复制粘贴到gitshell以克隆它:

git clone https://github.com/FeroxRev/Pokemon-Go-Rocket-API

3demonstration

好了,现在它被正确克隆了。

现在我要做的就是将此拉取请求合并到我的本地存储库https://github.com/FeroxRev/Pokemon-Go-Rocket-API/pull/53

我需要什么命令?

这是我想与我的本地仓库合并的分支

https://github.com/martin-podlubny/Pokemon-Go-Rocket-API/tree/transfer-all-but-strongest-unwanted-pokemon

2 个答案:

答案 0 :(得分:2)

GitHub提供了一些很好的文档,详细说明了如何合并拉取请求:

https://help.github.com/articles/merging-a-pull-request/

无需命令。但是,请确保在合并回购后,检查本地计算机上的更改,以便与HEAD保持同步。

答案 1 :(得分:2)

pull请求指向fork中的分支:你可以获取这个fork。

git fetch https://github.com/martin-podlubny/Pokemon-Go-Rocket-API
git merge transfer-all-but-strongest-unwanted-pokemon