##// END OF EJS Templates
largefile: use `update_file` instead of `drop` during `rollback`...
marmoute -
r48550:13e2ce79 default
parent child Browse files
Show More
@@ -1640,7 +1640,9 b' def overriderollback(orig, ui, repo, **o'
1640 lfutil.synclfdirstate(repo, lfdirstate, file, True)
1640 lfutil.synclfdirstate(repo, lfdirstate, file, True)
1641 orphans.discard(file)
1641 orphans.discard(file)
1642 for lfile in orphans:
1642 for lfile in orphans:
1643 lfdirstate.drop(lfile)
1643 lfdirstate.update_file(
1644 lfile, p1_tracked=False, wc_tracked=False
1645 )
1644 lfdirstate.write()
1646 lfdirstate.write()
1645 return result
1647 return result
1646
1648
General Comments 0
You need to be logged in to leave comments. Login now