##// END OF EJS Templates
largefile: use `update_file` instead of `normal` in `synclfdirstate`...
marmoute -
r48516:2d0717b1 default
parent child Browse files
Show More
@@ -562,7 +562,7 b' def synclfdirstate(repo, lfdirstate, lfi'
562 # state 'n' doesn't ensure 'clean' in this case
562 # state 'n' doesn't ensure 'clean' in this case
563 lfdirstate.normallookup(lfile)
563 lfdirstate.normallookup(lfile)
564 else:
564 else:
565 lfdirstate.normal(lfile)
565 lfdirstate.update_file(lfile, p1_tracked=True, wc_tracked=True)
566 elif state == b'm':
566 elif state == b'm':
567 lfdirstate.normallookup(lfile)
567 lfdirstate.normallookup(lfile)
568 elif state == b'r':
568 elif state == b'r':
General Comments 0
You need to be logged in to leave comments. Login now