How to combine a pull request in two branches?

I have two branches developand test. testlocated behind developwhich was created a few weeks ago.

I created a pull request for test, and my team member combined it. Now I want to make the same change to branches develop. I tried the cherry pick, but that didn't work.

Anyway, I can take the same pull request to the branch develop

+4
source share
2 answers

A pullis no more than a fetchfollowed by a merge.

, , git checkout git merge test ( , merge), git push develop develop.

+3

, test master, pull.

develop, ,

git checkout develop
git merge test
git push origin develop
+3

Source: https://habr.com/ru/post/1526013/


All Articles