I have two branches developand test. testlocated behind developwhich was created a few weeks ago.
develop
test
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
A pullis no more than a fetchfollowed by a merge.
pull
fetch
merge
, , git checkout git merge test ( , merge), git push develop develop.
git checkout
git merge
git push
, test master, pull.
master
develop, ,
git checkout develop git merge test git push origin develop
Source: https://habr.com/ru/post/1526013/More articles:Why is char initialization difference? C - cJavaFX KeyEvent Distribution Order - javaOne-time table inheritance does not work in Rails 4 application - ActiveRecord :: SubclassNotFound: single table inheritance mechanism failed - ruby | fooobar.comSearch for common characters in two lines - c ++What does this mean in lme4: the 'dataptr' function is not provided by the 'Rcpp' package - rCustom animation for resizing UITableViewCell - iosКак переместить объект в std:: async()? - c++MySQL and Codeigniter query performance - sqlmySQL Query - select fields - mysqlGraphs (x, y, z) of triplets over the coordinates (x, y) with color z - matlabAll Articles