Sorry, the follow-up question was not very helpful to guide
another person over e-mail. Let's try again with more specific
questions.
What do these say in that repository when run as the webserver
user?
$ for blob in \
a34d77e47bf1561db1ade4f6b247598b880f80d5 \
7625c494df01d4745e67bd4423e2fdbe9fc43799 \
b207fe30a5430f97d27d398d89c974b068694c7a \
57b07ace4bb6352416bbf9436b9f2642b3273257
do
git cat-file -t $blob || echo $blob does not exist
done
$ git cat-file commit c977ee1b2e54d67bb379ce476f784431c32136d7 |
grep 'parent '
$ git diff-tree -p c977ee1b2e54d67bb379ce476f784431c32136d7 | wc
The first one tries to make sure you have those four blob
objects in the repository, the second tries to make sure the
commit is a single parent commit as your gitweb output suggests,
and the last one is to obtain the diff text.
Also do you have the same problem with other commits, or is this
the only commit your gitweb is having trouble with showing
commitdiff?
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html