Jelmer Vernooij 16 gadi atpakaļ
vecāks
revīzija
669105af83
3 mainītis faili ar 7 papildinājumiem un 6 dzēšanām
  1. 3 4
      bin/dulwich
  2. 1 2
      dulwich/client.py
  3. 3 0
      dulwich/object_store.py

+ 3 - 4
bin/dulwich

@@ -29,6 +29,7 @@ def get_transport_and_path(uri):
     # if its not git or git+ssh, try a local url..
     return SubprocessGitClient(), uri
 
+
 def cmd_fetch_pack(args):
 	from dulwich.client import SimpleFetchGraphWalker
 	from dulwich.repo import Repo
@@ -36,7 +37,7 @@ def cmd_fetch_pack(args):
 	opts = dict(opts)
         client, path = get_transport_and_path(args.pop(0))
 	if "--all" in opts:
-		determine_wants = lambda x: [y for y in x.values() if not y in r.object_store]
+		determine_wants = r.object_store.determine_wants_all
 	else:
 		determine_wants = lambda x: [y for y in args if not y in r.object_store]
 	r = Repo(".")
@@ -152,7 +153,6 @@ def cmd_clone(args):
 	if args == []:
 		print "usage: dulwich clone host:path [PATH]"
 		sys.exit(1)
-
         client, host_path = get_transport_and_path(args.pop(0))
 
 	if len(args) > 0:
@@ -164,11 +164,10 @@ def cmd_clone(args):
 		os.mkdir(path)
 	Repo.init(path)
 	r = Repo(path)
-	determine_wants = lambda x: [y for y in x.values() if not y in r.object_store]
 	graphwalker = SimpleFetchGraphWalker(r.heads().values(), r.get_parents)
 	f, commit = r.object_store.add_pack()
 	try:
-		client.fetch_pack(host_path, determine_wants, graphwalker, f.write, 
+		client.fetch_pack(host_path, r.object_store.determine_wants_all, graphwalker, f.write, 
 				          sys.stdout.write)
 		f.close()
 		commit()

+ 1 - 2
dulwich/client.py

@@ -85,8 +85,7 @@ class GitClient(object):
             (sha, ref) = pkt.rstrip("\n").split(" ", 1)
             if server_capabilities is None:
                 (ref, server_capabilities) = extract_capabilities(ref)
-            if not (ref == "capabilities^{}" and sha == "0" * 40):
-                refs[ref] = sha
+            refs[ref] = sha
         return refs, server_capabilities
 
     def send_pack(self, path, generate_pack_contents):

+ 3 - 0
dulwich/object_store.py

@@ -42,6 +42,9 @@ class ObjectStore(object):
         self.path = path
         self._packs = None
 
+    def determine_wants_all(self, refs):
+	    return [sha for (ref, sha) in refs.iteritems() if not sha in self and not ref.endswith("^{}")]
+
     def iter_shas(self, shas):
         return ObjectStoreIterator(self, shas)