On Fri, Jan 07, 2011 at 07:43:40PM -0500, Phillip Susi wrote: > >Based on previous discussions, I think the answer to the first is no. > >The resulting repo violates a fundamental assumption of git. Yes, > >because of the replacement object, many things will still work. But many > >parts of git intentionally do not respect replacement, and they will be > >broken. > > What parts do not respect replacement? More importantly, what parts > will be broken? The man page seems to indicate that about the only > thing that does not by default is reachability testing, which to me > means fsck and prune. It seems to be the purpose of replace to > /prevent/ breakage and be respected by default, unless doing so would > cause harm, which is why fsck and prune do not. Off the top of my head, I don't know. I suspect it would take somebody writing a patch to create such an incomplete repository (or making one manually) and seeing how badly things broke. Maybe nothing would, and I am being overly conservative. It just makes me nervous to start violating what has always been a fundamental assumption about the object database (though as I pointed out, we did start violating it with shallow clones, so maybe it is not so bad). > >Instead, I think of replacements as a specific view into history, not a > >fundamental history-changing operation itself. Which means you can never > >save bandwidth or space by truncating history with replacements. You can > >only give somebody the full history, and share with them your view. If > >you want to truncate, you must rewrite history[1]. > > Right, but if you only care about that view, then there is no need to > waste bandwidth fetching the original one. It goes without saying > that people pulling from the repository mainly care about the view > upstream chooses to publish. Upstream can choose to rewrite, which > will cause breakage and is a sort of sneaky way to hide the original > history, or they can use replace, which avoids the breakage and gives > the client the choice of which view to use. Once you have fetched with that view, how locked into that view are you? Certainly you can never push to or be the fetch remote for another repository that does not want to respect that view, because you simply don't have the objects to complete the history for them. But what about deepening your own repo? In your proposal, I contact the server and ask for the replacement refs along with the branch refs. For the history of the branches, it gives me the truncated version with the replacement objects, right? Now how do I go back later and say "I'm interested in getting the rest of history, give me the real one"? I guess you can get the parent pointer from the real, "non-replaced" object and ask for it. But you can't ask for a specific commit, so for every such truncation, the parent needs to publish an extra ref (but _not_ make it one of the ones fetched by default, or it would nullify your original shallow fetch), and we need to contact them and find that ref. So I guess it's do-able, but there are a few interesting corners. I think somebody would need to whip up a proof of concept patch to explore those corners. -Peff -- 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