Reputation: 109
I did a rebase yesterday with parent stream, when I did a folder compare with all the files in both parent and child stream I see 32 changes. That includes the changes which I had delivered to parent stream from a different child stream
This is what I did:
Int
" Stream from Stream B
Int
" Stream and then recommened that baselineA
Below is my stream structure:
Int -> A
-> B
I am not sure how I pull the changes again from Int again.
Upvotes: 1
Views: 422
Reputation: 1323593
I am not sure how I pull the changes again from Int again
You A should have everything it needs from Int
.
If you need B
to get those changes from Int
(delivered "from a different child stream"), you can also rebase B
, like you did A
.
If the issue is:
Int
A
doesn't reflect those changes after rebaseThen display a version tree of the parent folder of those changes (both in the source and in the destination view): you might see some clue as to why the versions of the elements in that folder wasn't merged.
For instance, check that parent folder doesn't have an evil twin in both branches.
If that were the case, you would need to restore the proper content of that folder in Int, before rebasing again A
(and even B
).
If the issue is:
Int
B
doesn't reflect those changes after rebaseInt
to B
You need to:
Int
Int
B
Upvotes: 2