There is remote branch: R
There is local branch: L (which was created based on R)
So the graph is
R--R1---R2--- \ L--L1--
Right now, I just need keep L branch always have the updates from R
What is the simplest way I can do this?
I think the answer is to:
- pull updates from local R first
- checkout to L and merge
But this does not seem very straightforward and I need do some conflict handling manually.