On Tue, 21 Feb 2006, sean wrote: > > > I have linux-2.6 repository pulled and I'd like to download some branch > > (say, netdev-2.6), which uses many of the same objects, > > but not to get all the objects from the git server. > > Just make sure you're not using the rsync protocol. Using the > native git protocol would be best. Side note: the "automatic tag following" is broken wrt pulling unnecessary objects, even with the git protocol. What happens is that if you don't explicitly have a branch for what you are pulling, and you do something like git pull git://git.kernel.org/.... and the automatic tag following kicks in, it will first have fetched the objects once, and then when it tries to fetch the tag objects, it will fetch the objects it already fetched _again_ (plus the tags), because it will do the same object pull, but the temporary branch (to be merged) will never have been written as a branch head. So you'll see something like Generating pack... Done counting <x> objects. Packing <x> objects....................... Unpacking <x> objects 100% (<x>/<x>) done Auto-following refs/tags/v1.2.2 Generating pack... Done counting <x+1> objects. Packing <x+1> objects....................... Unpacking <x+1> objects 100% (<x+1>/<x+1>) done * refs/tags/v1.2.2: storing tag 'v1.2.2' of master.kernel.org:/pub/scm/git/git just because we hadn't updated any refs before we started re-fetching more objects. So we do have cases where we fetch unnecessarily even with the native protocol. Linus - : 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