|
|
|
@ -684,6 +684,8 @@ public class UploadPack {
|
|
|
|
|
|
|
|
|
|
if (depth != 0) |
|
|
|
|
processShallow(); |
|
|
|
|
if (!clientShallowCommits.isEmpty()) |
|
|
|
|
walk.assumeShallow(clientShallowCommits); |
|
|
|
|
sendPack = negotiate(); |
|
|
|
|
} catch (PackProtocolException err) { |
|
|
|
|
reportErrorDuringNegotiate(err.getMessage()); |
|
|
|
@ -756,7 +758,7 @@ public class UploadPack {
|
|
|
|
|
|
|
|
|
|
// Commits not on the boundary which are shallow in the client
|
|
|
|
|
// need to become unshallowed
|
|
|
|
|
if (c.getDepth() < depth && clientShallowCommits.contains(c)) { |
|
|
|
|
if (c.getDepth() < depth && clientShallowCommits.remove(c)) { |
|
|
|
|
unshallowCommits.add(c.copy()); |
|
|
|
|
pckOut.writeString("unshallow " + c.name()); //$NON-NLS-1$
|
|
|
|
|
} |
|
|
|
@ -1350,7 +1352,7 @@ public class UploadPack {
|
|
|
|
|
try { |
|
|
|
|
pw.setIndexDisabled(true); |
|
|
|
|
pw.setUseCachedPacks(true); |
|
|
|
|
pw.setUseBitmaps(true); |
|
|
|
|
pw.setUseBitmaps(depth == 0 && clientShallowCommits.isEmpty()); |
|
|
|
|
pw.setReuseDeltaCommits(true); |
|
|
|
|
pw.setDeltaBaseAsOffset(options.contains(OPTION_OFS_DELTA)); |
|
|
|
|
pw.setThin(options.contains(OPTION_THIN_PACK)); |
|
|
|
|