如何在两个分支中合并拉取请求?

时间:2014-02-09 09:57:27

标签: git github git-merge git-pull

我有两个分支developtesttest落后develop,这是几个星期前创建的。

我已经为test创建了拉取请求,我的团队成员合并了它。 现在我想将相同的更改推送到develop分支。 我试过樱桃挑选,但它不起作用。

无论如何,我可以向develop分支提取相同的拉取请求吗?

2 个答案:

答案 0 :(得分:2)

据我了解,当您接受拉取请求时,您的团队成员在test合并了master

现在要在develop中将其合并到您当地的仓库

git checkout develop
git merge test
git push origin develop

答案 1 :(得分:2)

pull只是fetch后跟merge

很难说你的提交树没有更多的信息,但是你应该能够git checkout开发分支,git mergetest(或者你正在尝试的任何提交) merge with),然后git push您的本地develop分支到远程回购的develop分支。