--- a/hgext/lfs/__init__.py Tue Dec 05 23:08:59 2017 -0500
+++ b/hgext/lfs/__init__.py Wed Dec 06 22:56:15 2017 -0500
@@ -24,6 +24,10 @@
# how many times to retry before giving up on transferring an object
retry = 5
+
+ # the local directory to store lfs files for sharing across local clones.
+ # If not set, the cache is located in an OS specific cache location.
+ usercache = /path/to/global/cache
"""
from __future__ import absolute_import
@@ -62,6 +66,9 @@
configitem('lfs', 'url',
default=configitem.dynamicdefault,
)
+configitem('lfs', 'usercache',
+ default=None,
+)
configitem('lfs', 'threshold',
default=None,
)