You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have a error order history when I use the last tag in main tab.
Here we have main that is a few commits ahead of branches one two and three. For whatever reason, we need to update these three other branches with modified versions of the last few commits on main.
Blow is my git command:
$ git rebase C2 three
$ git checkout one
$ git cherry-pick C4 C3 C2
$ git checkout two
$ git cherry-pick C5
$ git rebase two one
The history of branch one should be:
C2``->C3``->C4``->C5`->C1->C0
The text was updated successfully, but these errors were encountered:
I think this is because we have some code that tries to understand the order of the commits when rebasing, and that unfortunately assumes the chronological order (what you see above) vs the other in the rebase target
I dont think it applies to most lessons because most of the time we arent rebasing out of order
Hello, I have a error order history when I use the last tag in main tab.
Blow is my git command:
The history of branch
one
should be:The text was updated successfully, but these errors were encountered: