"Jason Sewall" <jasonsewall@xxxxxxxxx> writes: > find . -type f -exec dos2unix {} + > git commit -a --amend > [accept same message] > git fsck > [same error message as above] > > I just built my git today, unmodified: > git version 1.5.3.5.721.g039b > > What's going on? Carelessness is what is going on. Notice how nicely your "find . -type f -exec dos2unix {}" goes down to .git/objects and eats your loose objects You probably wanted to do git ls-files | xargs dos2unix instead. - 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