Show More
@@ -562,8 +562,11 b' def updatestandinsbymatch(repo, match):' | |||
|
562 | 562 | for f in match._files: |
|
563 | 563 | fstandin = standin(f) |
|
564 | 564 | |
|
565 |
# |
|
|
566 | if f in lfiles or fstandin in standins: | |
|
565 | # For largefiles, only one of the normal and standin should be | |
|
566 | # committed (except if one of them is a remove). | |
|
567 | # Thus, skip plain largefile names but keep the standin. | |
|
568 | if (f in lfiles or fstandin in standins) and \ | |
|
569 | repo.dirstate[f] != 'r' and repo.dirstate[fstandin] != 'r': | |
|
567 | 570 | continue |
|
568 | 571 | |
|
569 | 572 | actualfiles.append(f) |
General Comments 0
You need to be logged in to leave comments.
Login now