Fix rev-list when showing objects involving submodules
commit4d1012c3709e356107d0fb0e3bf5a39e0d5c209d
authorLinus Torvalds <torvalds@linux-foundation.org>
Sun, 11 Nov 2007 23:35:23 +0000 (11 23:35 +0000)
committerJunio C Hamano <gitster@pobox.com>
Wed, 14 Nov 2007 11:44:22 +0000 (14 03:44 -0800)
tree8da53013ed0166353bca689e8814f2eb0c3eaf1a
parentfb5fd011482b5aa0b340a4a5bd9192c0efc1edb7
Fix rev-list when showing objects involving submodules

The function mark_tree_uninteresting() assumed that the tree entries
are blob when they are not trees.  This is not so.  Since we do
not traverse into submodules (yet), the gitlinks should be ignored.

In general, we should try to start moving away from using the
"S_ISLNK()" like things for internal git state. It was a mistake to
just assume the numbers all were same across all systems in the first
place.  This implementation converts to the "object_type", and then
uses a case statement.

Noticed by Ilari on IRC.
Test script taken from an earlier version by Dscho.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-pack-objects.c
revision.c
t/t6008-rev-list-submodule.sh [new file with mode: 0755]
tree-walk.h