##// END OF EJS Templates
git: add a missing reset_copy keyword argument to dirstate.set_tracked()...
av6 -
r50280:3c4d36a9 stable
parent child Browse files
Show More
@@ -330,7 +330,8 b' class gitdirstate:'
330 # TODO: figure out a strategy for saving index backups.
330 # TODO: figure out a strategy for saving index backups.
331 pass
331 pass
332
332
333 def set_tracked(self, f):
333 def set_tracked(self, f, reset_copy=False):
334 # TODO: support copies and reset_copy=True
334 uf = pycompat.fsdecode(f)
335 uf = pycompat.fsdecode(f)
335 if uf in self.git.index:
336 if uf in self.git.index:
336 return False
337 return False
General Comments 0
You need to be logged in to leave comments. Login now