Tom Werner <pubsub@xxxxxxxxxxxxxxxxx> wrote: > I'm working on a flexible Erlang replacement for git-daemon and would > like to know if there is a specification available for the protocol that > git-upload-pack and git-receive-pack use. I've reverse engineered it but > have come across some points that seem inconsistent. Before I dig into > the C code in earnest I wanted to see if there's anything like spec > document for the system. Thanks! I'm curious, are you planning on implementing git-upload-pack and git-receive-pack in Erlang as well? Or are you just doing the git-daemon frontend and spawn the C git binaries as port processes? git-receive-pack isn't too much trouble, the protocol on the server side without the tell-me-more is fairly simple to implement, once you have something like index-pack or unpack-objects implemented. But that is somewhat non-trivial to do. git-upload-pack is much more complex on the server side as you must actually create the packfile, which means you also need to compute the set of objects the client is missing, as well as tell the client when you have enough "have" lines in order to compute the smallest reasonable pack possible for the data transfer. I know Erlang is really good at protocol handling and binary formatting/parsing, but I don't know if you have a good git object navigation library available to you in Erlang. Its been years since I last worked with it, or was involved in its community... ;-) -- Shawn. -- 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