##// END OF EJS Templates
largefile: use `update_file` instead of `remove` in `synclfdirstate`...
marmoute -
r48500:9217ab0e default
parent child Browse files
Show More
@@ -564,7 +564,7 b' def synclfdirstate(repo, lfdirstate, lfi'
564 elif state == b'm':
564 elif state == b'm':
565 lfdirstate.normallookup(lfile)
565 lfdirstate.normallookup(lfile)
566 elif state == b'r':
566 elif state == b'r':
567 lfdirstate.remove(lfile)
567 lfdirstate.update_file(lfile, p1_tracked=True, wc_tracked=False)
568 elif state == b'a':
568 elif state == b'a':
569 lfdirstate.add(lfile)
569 lfdirstate.add(lfile)
570
570
General Comments 0
You need to be logged in to leave comments. Login now