From: Linus Torvalds Date: Sun, 11 Nov 2007 23:35:23 +0000 (+0000) Subject: Fix rev-list when showing objects involving submodules X-Git-Tag: v1.5.3.7~11^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/481f0ee60eef2c34b891e5d04b7e6e5a955eedf4?hp=481f0ee60eef2c34b891e5d04b7e6e5a955eedf4 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 Signed-off-by: Junio C Hamano ---