The man-page of git diff-tree
suggests that I can do a combined diff (--cc
) with a bunch of tree-objects of my choosing. You have to use the --stdin
option for this. But I can’t get --stdin
to output anything at all.
Example:
$ git diff-tree --stdin
a b
a b
$
Here I typed a<Space>b<Enter>Ctrl-D: It doesn’t even complain that a
and b
is bad input... But even with valid commit hashes and/or further options I never get any output at all.
What am I doing wrong?
You must provide full hashes of commit or tree objects to
git diff-tree --stdin
: