changeset 39851 | 1f7b3b980af8 |
parent 39850 | d89d5bc06eaa |
child 39858 | 9534fe1e5d28 |
--- a/mercurial/repository.py Wed Sep 19 14:36:57 2018 -0700 +++ b/mercurial/repository.py Wed Sep 19 13:48:59 2018 -0700 @@ -25,6 +25,8 @@ REPO_FEATURE_REVLOG_FILE_STORAGE = b'revlogfilestorage' # The storage part of the repository is shared from an external source. REPO_FEATURE_SHARED_STORAGE = b'sharedstore' +# LFS supported for backing file storage. +REPO_FEATURE_LFS = b'lfs' class ipeerconnection(interfaceutil.Interface): """Represents a "connection" to a repository.