chefcurry7
chefcurry7

Reputation: 5241

Reverse commit history

I'm using SourceTree to view the commit history of a project. However I'd like to view the commit history from oldest to newest. I want the oldest commit to be at the top, is there any git command which can reverse the order?

Upvotes: 0

Views: 55

Answers (1)

CodeWizard
CodeWizard

Reputation: 141946

You cant do it within the source tree you have to use command line:L

git log --reverse

Source tree does not support it.

Upvotes: 2

Related Questions