##// END OF EJS Templates
commit: normalize filenames when checking explicit files (issue3576)
Matt Mackall -
r17378:b05e517c stable
parent child Browse files
Show More
@@ -1312,6 +1312,7 b' class localrepository(object):'
1312 matched = set(changes[0] + changes[1] + changes[2])
1312 matched = set(changes[0] + changes[1] + changes[2])
1313
1313
1314 for f in match.files():
1314 for f in match.files():
1315 f = self.dirstate.normalize(f)
1315 if f == '.' or f in matched or f in wctx.substate:
1316 if f == '.' or f in matched or f in wctx.substate:
1316 continue
1317 continue
1317 if f in changes[3]: # missing
1318 if f in changes[3]: # missing
General Comments 0
You need to be logged in to leave comments. Login now