log: when --cc is given, default to -p unless told otherwise
commitc7eaf8b4c3085fd2db2a47b83b828e363dcf5fd0
authorJunio C Hamano <gitster@pobox.com>
Thu, 20 Aug 2015 21:36:49 +0000 (20 14:36 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 20 Aug 2015 22:03:57 +0000 (20 15:03 -0700)
tree6a0dfec737f6e28818593b4bef40b85306f02b80
parentb130c706ecfaa370259a476c2b754fb4c4a1a180
log: when --cc is given, default to -p unless told otherwise

The "--cc" option to "git log" is clearly a request to show some
sort of combined diff (be it --patch or --raw), but traditionally
we required the command line to explicitly ask for "git log -p --cc".

Teach the command line parser to treat a lone "--cc" as if the user
specified "-p --cc".  Formats that do ask for other forms of diff
output, e.g. "log --raw --cc", are not overriden.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/log.c