On Wed, 20 Jun 2007, Martin Langhoff wrote: > A colleage at work is using git to manage code updates to a heavily > firewalled machine at a client site. In a nutshell, we "push" the > interesting code to a repo on usb-stick, and we pull from it on the > client's machine. > > We do some coding and testing on that machine, so ocassionally we > bring some patches back. > > Now the working repo on the client machine has started to die with > "corrupt pack" errors. I am trying to get my hands on the literal > error messages, and exact software versions installed. Right now all I > know is that it is SuSE 9 x86, git 1.4.x, cogito .17.x . The error > appears on git-diff, git-fsck-objects --full The full exact error message would be highly useful indeed. > We did bring a copy of the working copy with the "corrupt pack" to our > office, and here git (v1.5.1 and 1.5.2) thinks it's perfectly well. > > So I am a bit puzzled - while we try to get 1.5.x on the client > machine and see what happens, is there anything that could be causing > this? Any additional tests that we should run? Maybe the client machine runs git version < 1.4.2.2, in which case it is possible that your push created a pack containing delta objects with offset to base which git versions prior 1.4.2.2 do not understand. If this is the problem you are facing (the error message should confirm this) then the easiest solution is to upgrade git on the client. A quick fix for the client is to set repack.usedeltabaseoffset to false on the machine where you have git 1.5 installed, then run "git repack -a -d", and finally copy the pack over to the client repository. But because you push to a local repository (a mounted USB stick is considered a local repo) then you don't get to negociate the pack capabilities of the final destination, and therefore more "bad" delta objects might sneak in again. Nicolas - 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