Fedor Sergeev <Fedor.Sergeev@xxxxxxx> writes: > I have recently hit a behavior which might well be a feature, > but it was very surprising (in a bad sense) to me. It is a feature misfiring. Rebase is essentially a repeated cherry-pick, and a cherry-pick of commit A on top of commit B is done by a simplified 3-way merge between A and B using the parent of A as the common ancestor. A A' / / A^... pseudo history ...---B When your history has renamed Makefile to Makefile2 (thereby losing Makefile) while transition from A^ to A modified Makefile, the difference between A^ to A that is applied to B to produce A' contains only the change about Makefile (and does not talk about the unchangedness of Makefile1 nor Makefile2 --- in fact, when A' is created, the machinery does not even know if A^ and A had Makefile1 or Makefile2). When applying the change to Makefile, it notices that B does not have Makefile, but there is a path that is _identical_ to the preimage your change applies to (namely, Makefile2). To support people who rename Makefile to Makefile2 in the history that led to B, rebase (actually the underlying "am -3" it calls is where this rename detection smart lies) applies the changes to the "renamed" path. You might be able to work this around by forcing rebase not to use the simplified 3-way merge, by saying "rebase -m". -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html