On Sun, 10 Jul 2005, Daniel Barkalow wrote: > > Perhaps git-pack-objects should have the base as a optional argument, > with a default of the filename in $GIT_DIR/objects/pack and an option > for sending just the pack file to stdout?
You really _mustn't_ try to create the pack directly to the $GIT_DIR/objects/pack subdirectory - that would make git itself start possibly using that pack before the index is all done, and that would be just wrong and nasty. So you really should _always_ generate the pack somewhere else, and then move it (pack file first, index file second). Which is, btw, exactly what "git repack" does, so the solution to the problem is to just never use git-pack-objects directly if you don't like the semantics.. Linus - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html