equal
deleted
inserted
replaced
218 """returns true if the dirstate of the subrepo does not match |
218 """returns true if the dirstate of the subrepo does not match |
219 current stored state |
219 current stored state |
220 """ |
220 """ |
221 raise NotImplementedError |
221 raise NotImplementedError |
222 |
222 |
223 def checknested(path): |
223 def checknested(self, path): |
224 """check if path is a subrepository within this repository""" |
224 """check if path is a subrepository within this repository""" |
225 return False |
225 return False |
226 |
226 |
227 def commit(self, text, user, date): |
227 def commit(self, text, user, date): |
228 """commit the current changes to the subrepo with the given |
228 """commit the current changes to the subrepo with the given |