* cg-push protocol proposal
@ 2005-06-02 12:54 McMullan, Jason
2005-06-02 15:00 ` cg-push protocol proposal [update] McMullan, Jason
0 siblings, 1 reply; 2+ messages in thread
From: McMullan, Jason @ 2005-06-02 12:54 UTC (permalink / raw)
To: Git Mailing List
[-- Attachment #1: Type: text/plain, Size: 1433 bytes --]
I'd like to propose the following protocol for 'pushes'. Assume that a
'git-daemon' is the 'server', and is talking on stdin/stdout.
Each command is an ascii string, followed by a LF (\n)
Request current head ID:
head <head-name>\n
Responses:
head <head-name> <sha1>\n
error <head-name> <hex-code> <error-string>\n
Request a SHA1 blob from the server
send <sha1>\n
Responses:
send <sha1> <hex-size>\n<bytes...>
error <sha1> <hex-code> <error-string>\n
Update head ID to a SHA1 (the SHA1 may already be in the server's DB)
head <head-name> <old-sha1> <sha1>\n
1) Response if <head-name> is now <sha1>:
head <head-name> <sha1>\n
Response if error, or head locked by someone else updating:
error <head-name> <hex-code> <error-string>\n
Response if <sha1> is not in the database:
send <sha1>\n - Server needs the blob
2) Client response if 'send' is returned:
send <sha1> <hex-size>\n<bytes...>
3) Response if more objects are needed
(ie you sent a commit or tree object)
send <new-sha1>\n - Server needs blob
Remember the SHA1 you sent, 'call' step 2) with new-sha1
Goto 3)
Response if send succeeded:
exists <sha1>\n
Response if send failed:
error <sha1> <hex-code> <error-string>\n
TODO: Tags
--
Jason McMullan <jason.mcmullan@timesys.com>
TimeSys Corporation
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: cg-push protocol proposal [update]
2005-06-02 12:54 cg-push protocol proposal McMullan, Jason
@ 2005-06-02 15:00 ` McMullan, Jason
0 siblings, 0 replies; 2+ messages in thread
From: McMullan, Jason @ 2005-06-02 15:00 UTC (permalink / raw)
To: Git Mailing List
[-- Attachment #1: Type: text/plain, Size: 469 bytes --]
On Thu, 2005-06-02 at 08:47 -0400, McMullan, Jason wrote:
I'd like to propose the following protocol for 'pushes'. Assume that a
'git-daemon' is the 'server', and is talking on stdin/stdout.
If you want to only do cmp-xchg style head updates, just 'send' the
commit object first (the protocol will request any missing pieces),
then do the 'head <head-id> <old-sha1> <new-sha1>'.
--
Jason McMullan <jason.mcmullan@timesys.com>
TimeSys Corporation
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-06-02 14:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-02 12:54 cg-push protocol proposal McMullan, Jason
2005-06-02 15:00 ` cg-push protocol proposal [update] McMullan, Jason
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).