summaryrefslogtreecommitdiff
path: root/t/t4013/diff.show_-m_master
AgeCommit message (Collapse)AuthorFilesLines
2010-03-09show --first-parent/-m: do not default to --ccLibravatar Junio C Hamano1-0/+93
Given that "git show" always shows some diff and does not walk the history by default, it is natural to expect "git show --first-parent" to show the difference between the given commit and its first parent. It also would be natural, given that "--cc" is the default, "git show -m" to show pairwise difference from each of the parents. We however always defaulted to --cc and there was no way to turn it off. Signed-off-by: Junio C Hamano <gitster@pobox.com>