# HG changeset patch # User Benjamin Pollack # Date 1319131448 14400 # Node ID ca51a5dd5d0b75c7cba3fe07ec9f58452f125394 # Parent 1ae824142c0157f350e1e01cf3e23fbf01a1f722 largefiles: fix documentation to match desired behavior diff -r 1ae824142c01 -r ca51a5dd5d0b hgext/largefiles/design.txt --- a/hgext/largefiles/design.txt Thu Oct 20 17:47:33 2011 +0200 +++ b/hgext/largefiles/design.txt Thu Oct 20 13:24:08 2011 -0400 @@ -20,15 +20,16 @@ == The Local Repository == -The local repository has a largefile cache in .hg/largefiles which holds a +The local repository has a largefile store in .hg/largefiles which holds a subset of the largefiles needed. On a clone only the largefiles at tip are downloaded. When largefiles are downloaded from the central store, a copy is saved in this store. -== The Global Cache == +== The User Cache == -largefiles in a local repository cache are hardlinked to files in the global -cache. Before a file is downloaded we check if it is in the global cache. +largefiles in a local repository store are hardlinked to files in the user +cache. Before a file is downloaded we check if it is in the global cache, +hard-linking to the local store if we find it. == Implementation Details ==