When trying to use git-relink, I found it quite disappointing when going over packs. Git relink seem to make the assumption that there is a unique mapping from object name to object identity, which is of course acceptable for loose objects that are named with their sha-1 but false for .pack and .idx, to pack objects with the same name have contains the same objects but may be not packed in the same order, or compression. Moreover .idx files can not be considered alone, but depends on the associated .pack. When it happen that you have two different packs with the same name but of different sizes, git relink does not hard link the .packs because the size differ, and hard link the idx. And your repository is corrupted. It happen when you clone a repository, repack the clone and relink the clone to the original one. I found very few information about git relink, but as it appears in changelog of v1.5.4 I suppose it is not obsoleted. What about the use of this script? Marc -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html