|
@@ -30,10 +30,10 @@ The Dulwich client supports the following capabilities:
|
|
* quiet
|
|
* quiet
|
|
* report-status
|
|
* report-status
|
|
* delete-refs
|
|
* delete-refs
|
|
|
|
+ * shallow
|
|
|
|
|
|
Known capabilities that are not supported:
|
|
Known capabilities that are not supported:
|
|
|
|
|
|
- * shallow
|
|
|
|
* no-progress
|
|
* no-progress
|
|
* include-tag
|
|
* include-tag
|
|
"""
|
|
"""
|
|
@@ -361,7 +361,7 @@ class GitClient(object):
|
|
"""
|
|
"""
|
|
raise NotImplementedError(cls.from_parsedurl)
|
|
raise NotImplementedError(cls.from_parsedurl)
|
|
|
|
|
|
- def send_pack(self, path, update_refs, shallow, generate_pack_data,
|
|
|
|
|
|
+ def send_pack(self, path, update_refs, generate_pack_data,
|
|
progress=None):
|
|
progress=None):
|
|
"""Upload a pack to a remote repository.
|
|
"""Upload a pack to a remote repository.
|
|
|
|
|
|
@@ -370,7 +370,6 @@ class GitClient(object):
|
|
update_refs: Function to determine changes to remote refs. Receive
|
|
update_refs: Function to determine changes to remote refs. Receive
|
|
dict with existing remote refs, returns dict with
|
|
dict with existing remote refs, returns dict with
|
|
changed refs (name -> sha, where sha=ZERO_SHA for deletions)
|
|
changed refs (name -> sha, where sha=ZERO_SHA for deletions)
|
|
- shallow: Set of shallow commits generate_pack_data should skip
|
|
|
|
generate_pack_data: Function that can return a tuple
|
|
generate_pack_data: Function that can return a tuple
|
|
with number of objects and list of pack data to include
|
|
with number of objects and list of pack data to include
|
|
progress: Optional progress function
|
|
progress: Optional progress function
|
|
@@ -773,7 +772,7 @@ class TraditionalGitClient(GitClient):
|
|
"""
|
|
"""
|
|
raise NotImplementedError()
|
|
raise NotImplementedError()
|
|
|
|
|
|
- def send_pack(self, path, update_refs, shallow, generate_pack_data,
|
|
|
|
|
|
+ def send_pack(self, path, update_refs, generate_pack_data,
|
|
progress=None):
|
|
progress=None):
|
|
"""Upload a pack to a remote repository.
|
|
"""Upload a pack to a remote repository.
|
|
|
|
|
|
@@ -782,7 +781,6 @@ class TraditionalGitClient(GitClient):
|
|
update_refs: Function to determine changes to remote refs.
|
|
update_refs: Function to determine changes to remote refs.
|
|
Receive dict with existing remote refs, returns dict with
|
|
Receive dict with existing remote refs, returns dict with
|
|
changed refs (name -> sha, where sha=ZERO_SHA for deletions)
|
|
changed refs (name -> sha, where sha=ZERO_SHA for deletions)
|
|
- shallow: Set of shallow commits generate_pack_data should skip
|
|
|
|
generate_pack_data: Function that can return a tuple with
|
|
generate_pack_data: Function that can return a tuple with
|
|
number of objects and pack data to upload.
|
|
number of objects and pack data to upload.
|
|
progress: Optional callback called with progress updates
|
|
progress: Optional callback called with progress updates
|
|
@@ -844,7 +842,7 @@ class TraditionalGitClient(GitClient):
|
|
set(new_refs.items()).issubset(set(old_refs.items()))):
|
|
set(new_refs.items()).issubset(set(old_refs.items()))):
|
|
return new_refs
|
|
return new_refs
|
|
pack_data_count, pack_data = generate_pack_data(
|
|
pack_data_count, pack_data = generate_pack_data(
|
|
- have, want, shallow,
|
|
|
|
|
|
+ have, want,
|
|
ofs_delta=(CAPABILITY_OFS_DELTA in negotiated_capabilities))
|
|
ofs_delta=(CAPABILITY_OFS_DELTA in negotiated_capabilities))
|
|
|
|
|
|
dowrite = bool(pack_data_count)
|
|
dowrite = bool(pack_data_count)
|
|
@@ -1118,7 +1116,7 @@ class LocalGitClient(GitClient):
|
|
path = path.decode(sys.getfilesystemencoding())
|
|
path = path.decode(sys.getfilesystemencoding())
|
|
return closing(Repo(path))
|
|
return closing(Repo(path))
|
|
|
|
|
|
- def send_pack(self, path, update_refs, shallow, generate_pack_data,
|
|
|
|
|
|
+ def send_pack(self, path, update_refs, generate_pack_data,
|
|
progress=None):
|
|
progress=None):
|
|
"""Upload a pack to a remote repository.
|
|
"""Upload a pack to a remote repository.
|
|
|
|
|
|
@@ -1127,8 +1125,6 @@ class LocalGitClient(GitClient):
|
|
update_refs: Function to determine changes to remote refs.
|
|
update_refs: Function to determine changes to remote refs.
|
|
Receive dict with existing remote refs, returns dict with
|
|
Receive dict with existing remote refs, returns dict with
|
|
changed refs (name -> sha, where sha=ZERO_SHA for deletions)
|
|
changed refs (name -> sha, where sha=ZERO_SHA for deletions)
|
|
- shallow: Set of shallow commits generate_pack_data should skip
|
|
|
|
- generate_pack_data: Function that can return a tuple
|
|
|
|
with number of items and pack data to upload.
|
|
with number of items and pack data to upload.
|
|
progress: Optional progress function
|
|
progress: Optional progress function
|
|
|
|
|
|
@@ -1163,7 +1159,7 @@ class LocalGitClient(GitClient):
|
|
return new_refs
|
|
return new_refs
|
|
|
|
|
|
target.object_store.add_pack_data(
|
|
target.object_store.add_pack_data(
|
|
- *generate_pack_data(have, want, shallow, ofs_delta=True))
|
|
|
|
|
|
+ *generate_pack_data(have, want, ofs_delta=True))
|
|
|
|
|
|
for refname, new_sha1 in new_refs.items():
|
|
for refname, new_sha1 in new_refs.items():
|
|
old_sha1 = old_refs.get(refname, ZERO_SHA)
|
|
old_sha1 = old_refs.get(refname, ZERO_SHA)
|
|
@@ -1673,7 +1669,7 @@ class HttpGitClient(GitClient):
|
|
% resp.content_type)
|
|
% resp.content_type)
|
|
return resp, read
|
|
return resp, read
|
|
|
|
|
|
- def send_pack(self, path, update_refs, shallow, generate_pack_data,
|
|
|
|
|
|
+ def send_pack(self, path, update_refs, generate_pack_data,
|
|
progress=None):
|
|
progress=None):
|
|
"""Upload a pack to a remote repository.
|
|
"""Upload a pack to a remote repository.
|
|
|
|
|
|
@@ -1682,7 +1678,6 @@ class HttpGitClient(GitClient):
|
|
update_refs: Function to determine changes to remote refs.
|
|
update_refs: Function to determine changes to remote refs.
|
|
Receives dict with existing remote refs, returns dict with
|
|
Receives dict with existing remote refs, returns dict with
|
|
changed refs (name -> sha, where sha=ZERO_SHA for deletions)
|
|
changed refs (name -> sha, where sha=ZERO_SHA for deletions)
|
|
- shallow: Set of shallow commits generate_pack_data should skip
|
|
|
|
generate_pack_data: Function that can return a tuple
|
|
generate_pack_data: Function that can return a tuple
|
|
with number of elements and pack data to upload.
|
|
with number of elements and pack data to upload.
|
|
progress: Optional progress function
|
|
progress: Optional progress function
|
|
@@ -1720,7 +1715,7 @@ class HttpGitClient(GitClient):
|
|
if not want and set(new_refs.items()).issubset(set(old_refs.items())):
|
|
if not want and set(new_refs.items()).issubset(set(old_refs.items())):
|
|
return new_refs
|
|
return new_refs
|
|
pack_data_count, pack_data = generate_pack_data(
|
|
pack_data_count, pack_data = generate_pack_data(
|
|
- have, want, shallow,
|
|
|
|
|
|
+ have, want,
|
|
ofs_delta=(CAPABILITY_OFS_DELTA in negotiated_capabilities))
|
|
ofs_delta=(CAPABILITY_OFS_DELTA in negotiated_capabilities))
|
|
if pack_data_count:
|
|
if pack_data_count:
|
|
write_pack_data(req_proto.write_file(), pack_data_count, pack_data)
|
|
write_pack_data(req_proto.write_file(), pack_data_count, pack_data)
|