EN
Does the git pull --rebase change the commit order by time?
0
answers
3
points
I mean when I make rebase the commits will be kept in order by date time or not?
Is it possible to have that last commit will be older than the previous one?
Example:
- First commit (last commit) - time - 2020-06-18 10:00
- Second commit - time - 2020-06-18 12:00
- Third commit - time - 2020-06-18 11:00
I know that rebase is better than merge, because the commit history is clean
and easy to read by the entire team, but this question it kind of important to me.
0 answers