equal
deleted
inserted
replaced
284 |
284 |
285 This is only True is the file is currently tracked. |
285 This is only True is the file is currently tracked. |
286 |
286 |
287 Should only be set if a merge is in progress in the dirstate |
287 Should only be set if a merge is in progress in the dirstate |
288 """ |
288 """ |
289 return self.v1_state() == b'n' and self.v1_size() == FROM_P2 |
289 return self._wc_tracked and self._clean_p2 |
290 |
290 |
291 @property |
291 @property |
292 def from_p2_removed(self): |
292 def from_p2_removed(self): |
293 """True if the file has been removed, but was "from_p2" initially |
293 """True if the file has been removed, but was "from_p2" initially |
294 |
294 |