Git - Rebasing
Given the following interactive rebase todo list:
If you change it to:
What will be the order of commits after the rebase?
pick a1b2c3 Commit A pick d4e5f6 Commit B pick 789abc Commit C
If you change it to:
pick d4e5f6 Commit B pick a1b2c3 Commit A pick 789abc Commit C
What will be the order of commits after the rebase?
