mercurial/hg.py
changeset 50908 1339158a8a40
parent 50572 029fe2f012c8
child 50925 d718eddf01d9
equal deleted inserted replaced
50907:1270677d740b 50908:1339158a8a40
  1597 
  1597 
  1598 # Files of interest
  1598 # Files of interest
  1599 # Used to check if the repository has changed looking at mtime and size of
  1599 # Used to check if the repository has changed looking at mtime and size of
  1600 # these files.
  1600 # these files.
  1601 foi = [
  1601 foi = [
  1602     (b'spath', b'00changelog.i'),
  1602     ('spath', b'00changelog.i'),
  1603     (b'spath', b'phaseroots'),  # ! phase can change content at the same size
  1603     ('spath', b'phaseroots'),  # ! phase can change content at the same size
  1604     (b'spath', b'obsstore'),
  1604     ('spath', b'obsstore'),
  1605     (b'path', b'bookmarks'),  # ! bookmark can change content at the same size
  1605     ('path', b'bookmarks'),  # ! bookmark can change content at the same size
  1606 ]
  1606 ]
  1607 
  1607 
  1608 
  1608 
  1609 class cachedlocalrepo:
  1609 class cachedlocalrepo:
  1610     """Holds a localrepository that can be cached and reused."""
  1610     """Holds a localrepository that can be cached and reused."""