Show More
@@ -381,7 +381,7 b' def overridemanifestmerge(origfn, repo, ' | |||||
381 |
|
381 | |||
382 | splitstandin = lfutil.splitstandin(f) |
|
382 | splitstandin = lfutil.splitstandin(f) | |
383 | if (m == "g" and splitstandin is not None and |
|
383 | if (m == "g" and splitstandin is not None and | |
384 |
splitstandin in p1 |
|
384 | splitstandin in p1): | |
385 | # Case 1: normal file in the working copy, largefile in |
|
385 | # Case 1: normal file in the working copy, largefile in | |
386 | # the second parent |
|
386 | # the second parent | |
387 | lfile = splitstandin |
|
387 | lfile = splitstandin | |
@@ -394,7 +394,7 b' def overridemanifestmerge(origfn, repo, ' | |||||
394 | processed.append((standin, "g", (p2.flags(standin),), msg)) |
|
394 | processed.append((standin, "g", (p2.flags(standin),), msg)) | |
395 | else: |
|
395 | else: | |
396 | processed.append((standin, "r", None, msg)) |
|
396 | processed.append((standin, "r", None, msg)) | |
397 |
elif m == "g" and lfutil.standin(f) in p1 |
|
397 | elif m == "g" and lfutil.standin(f) in p1: | |
398 | # Case 2: largefile in the working copy, normal file in |
|
398 | # Case 2: largefile in the working copy, normal file in | |
399 | # the second parent |
|
399 | # the second parent | |
400 | standin = lfutil.standin(f) |
|
400 | standin = lfutil.standin(f) |
General Comments 0
You need to be logged in to leave comments.
Login now