DEV Community

Discussion on: A closer look at git rebase

Collapse
 
gonedark profile image
Jason McCreary

No, the commit dates do not influence a rebase. The base branch commits are fast forwarded, then the stale branch commits are replayed.

Techically a replayed commit creates a new commit. So it has a new SHA and time stamp, and everything else is the same.