git-whatchanged -p anomoly?

2005-08-18 Thread Luck, Tony
Yesterday I was all happy ... Linus pulled a couple of changes from my tree, and after I did a pull back from his tree into my linus tracking branch, my status scripts correctly identified the branches that I'd been using to track those changes as being no longer needed. But this morning I ran

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