|
|
|
|
|
by jedbrown
4869 days ago
|
|
In both cases, the second 'git rebase' is just a fast-forward (moving the ref ahead without modifying the graph). Thus we need only distinguish what happens in the first 'git rebase', which is a different choice of which patch gets rewritten. Note that you can shorten git checkout bugFix
git rebase master
to git rebase master bugFix
|
|