This is my current GIT state :
0
|\
| \
| \
| \
| 1
| |\
| | \
| | \
| | \
| 1 2
| / |
| / |
| / |
0 |
| |
| |
| |
The branch 0 is master
The branch 1 is a new feature that has been reviewed, then modified, then merged.
The branch 2 is starting from the branch 1 before it has been reviewed : this means it has the feature, but it is lacking some modifications.
Issue
I would like to incorporate the changes that have been made & merged into my branch 2.
What is the correct command to run, and on which branch ?
EDIT the file that is creating a conflict :
old state :
import { Observable } from 'rxjs/Observable';
import { Injectable } from '@angular/core';
export const mockedData ...
new state :
import { Observable } from 'rxjs/Observable';
import { Injectable } from '@angular/core';
import 'rxjs/add/observable/of';
import 'rxjs/add/operator/delay';
export const mockedData ...
0into2?0(after all merges) to2?