##// END OF EJS Templates
narrow: stop using `drop` in the `updateworkingcopy`...
marmoute -
r48552:5bcd3053 default
parent child Browse files
Show More
@@ -343,7 +343,7 b' def updateworkingcopy(repo, assumeclean='
343 for f in sorted(status.ignored):
343 for f in sorted(status.ignored):
344 repo.ui.status(_(b'not deleting ignored file %s\n') % uipathfn(f))
344 repo.ui.status(_(b'not deleting ignored file %s\n') % uipathfn(f))
345 for f in clean + trackeddirty:
345 for f in clean + trackeddirty:
346 ds.drop(f)
346 ds.update_file(f, p1_tracked=False, wc_tracked=False)
347
347
348 pctx = repo[b'.']
348 pctx = repo[b'.']
349
349
General Comments 0
You need to be logged in to leave comments. Login now