Re: git-whatchanged -p anomoly?

2005-08-18 Thread Linus Torvalds
On Thu, 18 Aug 2005, Luck, Tony wrote: The spurious changes reported by git-whatchanged -p are: Documentation/acpi-hotkey.txt |3 Documentation/kernel-parameters.txt|5 drivers/acpi/osl.c |6 fs/jfs/inode.c

Re: git-whatchanged -p anomoly?

2005-08-18 Thread Junio C Hamano
Luck, Tony [EMAIL PROTECTED] writes: $ git-whatchanged -p test ^linus | diffstat -p1 $ git-diff-tree -p linus test | diffstat -p1 git-whatchanged internally uses git-rev-list which skips merge commits. You need '-m' to cause it not to. $ git-whatchanged -m -p linus..test | diffstat -p1