Let's say I have 100 commits in my workspace (commit1 - oldest, commit100 - newest).
If I do git log --oneline
then it shows like this. It keep printing until the oldest and stop.
==============================================
commit10
commit9
commit8
commit7
commit6
commit5
commit4
commit3
commit2
commit1
>>my_branch>main>
===============================================
How can I change this show from the newest like this?
==============================================
commit100
commit99
commit98
commit97
commit96
commit95
commit94
commit93
commit92
commit91
...
===============================================