On Thu, 23 Jun 2005, Russell King wrote: > Last night, I pulled Linus' kernel tree from k.o, but Linus was in the > middle of pushing an update to it. The way cogito works, it grabs the > HEAD first, and then rsyncs the objects. It needs to do this, in case HEAD changes after or during the rsync (to include objects written after the rsync looked for them). > However, this retrieved the updated HEAD, and only some of the objects. > cogito happily tried to merge the result, and failed. A later pull > and git-fsck-cache confirmed everything was fine _in this instance_. It should be fine in all instances; it makes no assuptions about the presence or absence of objects in the local database before the pull, so doing a pull after the previous one didn't work right should be just as likely to result in a functional state as any other pull. > Therefore, may I suggest the following two changes in the way git > works: > > 1. a push updates HEAD only after the rsync/upload of all objects is > complete. This means that any pull will not try to update to the > new head with a partial object tree. git-ssh-push only updates the HEAD (or, rather, the thing the HEAD is a symlink to) afterwards. I'm not sure how Linus was getting things there. It's also possible that the mirroring process is failing to maintain this constraint. > 2. a pull only tries to fetch objects if HEAD has been updated since > the last pull. That's no good; if the only recent change is a new tag, you want to get the tag object. Also, having it not do this is what let it recover in your case on the second try. The only risk is that you'll pick up some objects that you don't need yet (but would need if you pulled again when the push completes). -Daniel *This .sig left intentionally blank* - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Sat Jun 25 02:43:06 2005
This archive was generated by hypermail 2.1.8 : 2005-06-25 02:43:10 EST