Can I get git log to print the history in reverse order?
        Posted  
        
            by Erik B
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Erik B
        
        
        
        Published on 2010-05-09T19:13:45Z
        Indexed on 
            2010/05/09
            19:18 UTC
        
        
        Read the original article
        Hit count: 328
        
I recently learned that I can get hg log to print the history in reverse order with:
hg log -r :
So of course I tried:
git log -r :
Well, it didn't work. So what is the command to do the same thing in git?
© Stack Overflow or respective owner