On Nov 15, 2007 4:55 PM, Junio C Hamano <gitster@xxxxxxxxx> wrote: > "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. > Sure enough. I'll chalk that one up to too many mind-numbing meetings today. Thanks for the wake-up... - 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