|
|
|
|
|
by steveklabnik
3599 days ago
|
|
Ah, sorry, I'm probably mis-understanding a "squash merge". I thought you meant you have a graph like this: C -> D -> E
/
A -> B
then you "squash merge" S------
/ \
A -> B -> F
where S is C + D + E.Whereas a rebase + (now fast-forward) merge would be A -> B -> C' -> D' -> E'
and, if squashed during rebase -i or by some other means A -> B -> S
It seems you're saying a "squash merge" is the last one, I thought it was the second one. |
|