I have this git branch structure:
a-b-c <---master
\
\d-e-f <--feature1
\
\g-h-i <--feature1_1
I need the possibility to rebase feature1 on master to get bugfixes and other features and on feature1_1 I need the possibility to get bugfixes and features from master and to get bugfixes from feature1_1 too.
It should possible to merge feature1 into master before feature1_1 is ready.
Can there be any problems with the rebase (strange merge conflicts etc.) and if so what should I pay attention to?