I'm trying to find a command line option for gitk that has the same effect of "Strictly sort by date" in the "View / Edit view..." window. In fact, I'm interested in all the command line options available, but "man gitk" shows a very limited number of options compared to those available in the GUI.

Thanks!

link|improve this question

67% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The man gitk at least mentions it does take the same options than git rev-list, including

--date-order 

This option is similar to --topo-order in the sense that no parent comes before all of its children, but otherwise things are still ordered in the commit timestamp order.

See "Guide to understanding gitk?" for more.

link|improve this answer
Note: if -d or --date-order is really the argument you are after, better not using too much, according to Linus himself: amailbox.org/mailarchive/git/2008/5/28/1958754 – VonC Nov 18 '11 at 20:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.