# HG changeset patch # User Matt Harbison # Date 2017-11-27 02:14:48 # Node ID 8887a45e338492035ffc929c5da4394e776bf72c # Parent a8c778b2a689678931d21b67ab0119b551bad3d2 lfs: enable the extension locally after converting to an 'lfs' repo This is consistent with clone and share in the previous commits. diff --git a/hgext/lfs/wrapper.py b/hgext/lfs/wrapper.py --- a/hgext/lfs/wrapper.py +++ b/hgext/lfs/wrapper.py @@ -184,6 +184,10 @@ def convertsink(orig, sink): self.repo.requirements.add('lfs') self.repo._writerequirements() + # Permanently enable lfs locally + with self.repo.vfs('hgrc', 'a', text=True) as fp: + fp.write('\n[extensions]\nlfs=\n') + return node sink.__class__ = lfssink diff --git a/tests/test-lfs-largefiles.t b/tests/test-lfs-largefiles.t --- a/tests/test-lfs-largefiles.t +++ b/tests/test-lfs-largefiles.t @@ -284,7 +284,8 @@ parameters are available, but not --auth 0 remove large_by_size.bin $ cd nolargefiles -The requirement is added to the destination repo +The requirement is added to the destination repo, and the extension is enabled +locally. $ cat .hg/requires dotencode @@ -293,6 +294,8 @@ The requirement is added to the destinat lfs revlogv1 store + $ hg config --debug extensions | grep lfs + $TESTTMP/nolargefiles/.hg/hgrc:*: extensions.lfs= (glob) $ hg log -r 'all()' -G -T '{rev} {join(lfs_files, ", ")} ({desc})\n' o 8 (remove large_by_size.bin) diff --git a/tests/test-lfs.t b/tests/test-lfs.t --- a/tests/test-lfs.t +++ b/tests/test-lfs.t @@ -644,3 +644,6 @@ This convert is trickier, because it con oid sha256:66100b384bf761271b407d79fc30cdd0554f3b2c5d944836e936d584b88ce88e size 39 x-is-binary 0 + + $ hg -R convert_lfs2 config --debug extensions | grep lfs + $TESTTMP/convert_lfs2/.hg/hgrc:*: extensions.lfs= (glob)