]> git.ipfire.org Git - thirdparty/git.git/commit - transport.c
Simplify fetch transport API to just one function
authorShawn O. Pearce <spearce@spearce.org>
Fri, 14 Sep 2007 07:31:21 +0000 (03:31 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 19 Sep 2007 10:22:30 +0000 (03:22 -0700)
commit425b1393139d99d89c7a95906686d9b041f2ee3d
tree929a07ce573bd363eb88bddbef476742b6de7ef6
parent7a2bff45937a60d846abf3ccb42015539aedcb40
Simplify fetch transport API to just one function

Commit walkers need to know the SHA-1 name of any objects they
have been asked to fetch while the native pack transport only
wants to know the names of the remote refs as the remote side
must do the name->SHA-1 translation.

Since we only have three fetch implementations and one of them
(bundle) doesn't even need the name information we can reduce
the code required to perform a fetch by having just one function
and passing of the filtered list of refs to be fetched.  Each
transport can then obtain the information it needs from that ref
array to construct its own internal operation state.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Conflicts:

transport.c
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-fetch.c
transport.c
transport.h