Show More
@@ -1999,6 +1999,10 b' class overlayworkingctx(committablectx):' | |||||
1999 | def setbase(self, wrappedctx): |
|
1999 | def setbase(self, wrappedctx): | |
2000 | self._wrappedctx = wrappedctx |
|
2000 | self._wrappedctx = wrappedctx | |
2001 | self._parents = [wrappedctx] |
|
2001 | self._parents = [wrappedctx] | |
|
2002 | # Drop old manifest cache as it is now out of date. | |||
|
2003 | # This is necessary when, e.g., rebasing several nodes with one | |||
|
2004 | # ``overlayworkingctx`` (e.g. with --collapse). | |||
|
2005 | util.clearcachedproperty(self, '_manifest') | |||
2002 |
|
2006 | |||
2003 | def data(self, path): |
|
2007 | def data(self, path): | |
2004 | if self.isdirty(path): |
|
2008 | if self.isdirty(path): |
General Comments 0
You need to be logged in to leave comments.
Login now