##// END OF EJS Templates
largefile: use `update_file` instead of `add` in `synclfdirstate`...
marmoute -
r48555:9e9c82d6 default
parent child Browse files
Show More
@@ -575,7 +575,7 b' def synclfdirstate(repo, lfdirstate, lfi'
575 elif state == b'r':
575 elif state == b'r':
576 lfdirstate.update_file(lfile, p1_tracked=True, wc_tracked=False)
576 lfdirstate.update_file(lfile, p1_tracked=True, wc_tracked=False)
577 elif state == b'a':
577 elif state == b'a':
578 lfdirstate.add(lfile)
578 lfdirstate.update_file(lfile, p1_tracked=False, wc_tracked=True)
579
579
580
580
581 def markcommitted(orig, ctx, node):
581 def markcommitted(orig, ctx, node):
General Comments 0
You need to be logged in to leave comments. Login now