cacheutil.py
25 lines
| 931 B
| text/x-python
|
PythonLexer
/ mercurial / cacheutil.py
Boris Feld
|
r35784 | # scmutil.py - Mercurial core utility functions | ||
# | ||||
Raphaël Gomès
|
r47575 | # Copyright Olivia Mackall <olivia@selenic.com> and other | ||
Boris Feld
|
r35784 | # | ||
# This software may be used and distributed according to the terms of the | ||||
# GNU General Public License version 2 or any later version. | ||||
Matt Harbison
|
r52756 | from __future__ import annotations | ||
Boris Feld
|
r35784 | from . import repoview | ||
Augie Fackler
|
r43345 | |||
Boris Feld
|
r35784 | def cachetocopy(srcrepo): | ||
"""return the list of cache file valuable to copy during a clone""" | ||||
# In local clones we're copying all nodes, not just served | ||||
# ones. Therefore copy all branch caches over. | ||||
Augie Fackler
|
r43347 | cachefiles = [b'branch2'] | ||
cachefiles += [b'branch2-%s' % f for f in repoview.filtertable] | ||||
r52858 | cachefiles += [b'branch3-exp'] | |||
cachefiles += [b'branch3-exp-%s' % f for f in repoview.filtertable] | ||||
r52799 | cachefiles += [b'rbc-names-v2', b'rbc-revs-v2'] | |||
Augie Fackler
|
r43347 | cachefiles += [b'tags2'] | ||
cachefiles += [b'tags2-%s' % f for f in repoview.filtertable] | ||||
cachefiles += [b'hgtagsfnodes1'] | ||||
Boris Feld
|
r35784 | return cachefiles | ||