##// END OF EJS Templates
subrepo: introduce storeclean method...
Angel Ezquerra -
r18937:9a171baa default
parent child Browse files
Show More
@@ -313,6 +313,13 b' def subrepo(ctx, path):'
313 313
314 314 class abstractsubrepo(object):
315 315
316 def storeclean(self, path):
317 """
318 returns true if the repository has not changed since it was last
319 cloned from or pushed to a given repository.
320 """
321 return False
322
316 323 def dirty(self, ignoreupdate=False):
317 324 """returns true if the dirstate of the subrepo is dirty or does not
318 325 match current stored state. If ignoreupdate is true, only check
General Comments 0
You need to be logged in to leave comments. Login now