Johannes Schindelin <Johannes.Schindelin@xxxxxx> writes: > On Wed, 17 Dec 2008, Emily Ren wrote: > >> I want some group can pull these branches or tags from my repo, while >> other's can't, Need I maintain two repositories ? > > Either that (that would be the easy method, and also the proper one, since > people would not even know what you hide), but you could patch > upload-pack so that it runs a hook with the rev-list arguments in > do_rev_list() in upload-pack.c, and die() if the hook returns non-zero. I do not think that would work very well as you expect. Two branches can be pointing at the same commit, and Emily may want to hide one but not the other. The time you obtain from "want" is too late. If you were to extend upload-pack, the place to narrow would be the initial "here are the refs and the objects they point at" announcement that is done at the very beginning. You would do something like the pseudo patch attached at the end. read_set_of_exposed_refs_from_hook() should return, depending on who the user is (which is obviously not available if this connection is over the anonymous git-daemon service, but local and usual ssh connection you could do whoami, and on gitosis there would be some environment variable to distinguish who you are that you can use), the set of refs that the user is allowed to see. diff --git i/upload-pack.c w/upload-pack.c index e5adbc0..129aa1e 100644 --- i/upload-pack.c +++ w/upload-pack.c @@ -10,6 +10,10 @@ #include "revision.h" #include "list-objects.h" #include "run-command.h" +#include "string-list.h" + +static int use_ref_limiting; +static struct string_list exposed_refs; static const char upload_pack_usage[] = "git-upload-pack [--strict] [--timeout=nn] <dir>"; @@ -574,8 +578,14 @@ static int send_ref(const char *refname, const unsigned char *sha1, int flag, vo static const char *capabilities = "multi_ack thin-pack side-band" " side-band-64k ofs-delta shallow no-progress" " include-tag"; - struct object *o = parse_object(sha1); + struct object *o; + + if (use_ref_limiting && !string_list_has_string(&exposed_refs, refname)) { + /* The downloader is not allowed to know the presense of this ref */ + return 0; + } + o = parse_object(sha1); if (!o) die("git upload-pack: cannot find object %s:", sha1_to_hex(sha1)); @@ -600,6 +610,12 @@ static int send_ref(const char *refname, const unsigned char *sha1, int flag, vo static void upload_pack(void) { reset_timeout(); + + if ("limit exposed refs" hook is available) { + use_ref_limiting = 1; + read_set_of_exposed_refs_from_hook(&exposed_refs); + } + head_ref(send_ref, NULL); for_each_ref(send_ref, NULL); packet_flush(1); -- 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