Hi PlexConnect-Fans :)
Perhaps it could be usefull for some users:
I asked Github Support to explain me how i can update, a dev branch B forked from dev branch A, from master branch ?Answer:
Hi Flammang,
Just to clarify, do you want to merge new changes from the master branch into branch B?
If so, just checkout branch B, and merge from master. You can do that with the following commands:
git checkout branch-B
git merge master
If that's not what you're asking, could you explain it a bit more?
Thanks!
Jamie
Hope this can help :)
that works: