top | item 38399233

(no title)

hackernews1134 | 2 years ago

If I checkout the merge commit and then do a ‘git log -n 5’, which parent pointer is followed to show the previous commit logs? A or B or Both / all if it is more than a 2-way merge?

discuss

order

paulddraper|2 years ago

By default it's by commit date.

Other ordering is possible, e.g. --topo-order

baronswindle|2 years ago

As I recall, it shows commits from both parents in order of the committed date.