##// END OF EJS Templates
Fix bug in reverting deleted files...
Matt Mackall -
r650:2c934c7b default
parent child Browse files
Show More
@@ -1263,6 +1263,8 b' class localrepository:'
1263 # resolve the manifest to determine which files
1263 # resolve the manifest to determine which files
1264 # we care about merging
1264 # we care about merging
1265 self.ui.note("resolving manifests\n")
1265 self.ui.note("resolving manifests\n")
1266 self.ui.debug(" force %s allow %s moddirstate %s linear %s\n" %
1267 (force, allow, moddirstate, linear_path))
1266 self.ui.debug(" ancestor %s local %s remote %s\n" %
1268 self.ui.debug(" ancestor %s local %s remote %s\n" %
1267 (short(man), short(m1n), short(m2n)))
1269 (short(man), short(m1n), short(m2n)))
1268
1270
@@ -1380,6 +1382,8 b' class localrepository:'
1380 get[f] = n
1382 get[f] = n
1381 else:
1383 else:
1382 self.ui.debug("local deleted %s\n" % f)
1384 self.ui.debug("local deleted %s\n" % f)
1385 if force:
1386 get[f] = n
1383
1387
1384 del mw, m1, m2, ma
1388 del mw, m1, m2, ma
1385
1389
General Comments 0
You need to be logged in to leave comments. Login now