##// END OF EJS Templates
sparse: expand module docstring...
Gregory Szorc -
r33290:cd1c275c default
parent child Browse files
Show More
@@ -6,6 +6,17 b''
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 """allow sparse checkouts of the working directory (EXPERIMENTAL)
8 """allow sparse checkouts of the working directory (EXPERIMENTAL)
9
10 (This extension is not yet protected by backwards compatibility
11 guarantees. Any aspect may break in future releases until this
12 notice is removed.)
13
14 This extension allows the working directory to only consist of a
15 subset of files for the revision. This allows specific files or
16 directories to be explicitly included or excluded. Many repository
17 operations have performance proportional to the number of files in
18 the working directory. So only realizing a subset of files in the
19 working directory can improve performance.
9 """
20 """
10
21
11 from __future__ import absolute_import
22 from __future__ import absolute_import
General Comments 0
You need to be logged in to leave comments. Login now