##// END OF EJS Templates
help: minor copy editing to the `config.format` section...
Matt Harbison -
r44569:6ae32c12 default
parent child Browse files
Show More
@@ -827,18 +827,18 b' Example for ``~/.hgrc``::'
827 ----------
827 ----------
828
828
829 Configuration that controls the repository format. Newer format options are more
829 Configuration that controls the repository format. Newer format options are more
830 powerful but incompatible with some older versions of Mercurial. Format options
830 powerful, but incompatible with some older versions of Mercurial. Format options
831 are considered at repository initialization only. You need to make a new clone
831 are considered at repository initialization only. You need to make a new clone
832 for config change to be taken into account.
832 for config changes to be taken into account.
833
833
834 For more details about repository format and version compatibility, see
834 For more details about repository format and version compatibility, see
835 https://www.mercurial-scm.org/wiki/MissingRequirement
835 https://www.mercurial-scm.org/wiki/MissingRequirement
836
836
837 ``usegeneraldelta``
837 ``usegeneraldelta``
838 Enable or disable the "generaldelta" repository format which improves
838 Enable or disable the "generaldelta" repository format which improves
839 repository compression by allowing "revlog" to store delta against arbitrary
839 repository compression by allowing "revlog" to store deltas against
840 revision instead of the previous stored one. This provides significant
840 arbitrary revisions instead of the previously stored one. This provides
841 improvement for repositories with branches.
841 significant improvement for repositories with branches.
842
842
843 Repositories with this on-disk format require Mercurial version 1.9.
843 Repositories with this on-disk format require Mercurial version 1.9.
844
844
@@ -847,7 +847,7 b' https://www.mercurial-scm.org/wiki/Missi'
847 ``dotencode``
847 ``dotencode``
848 Enable or disable the "dotencode" repository format which enhances
848 Enable or disable the "dotencode" repository format which enhances
849 the "fncache" repository format (which has to be enabled to use
849 the "fncache" repository format (which has to be enabled to use
850 dotencode) to avoid issues with filenames starting with ._ on
850 dotencode) to avoid issues with filenames starting with "._" on
851 Mac OS X and spaces on Windows.
851 Mac OS X and spaces on Windows.
852
852
853 Repositories with this on-disk format require Mercurial version 1.7.
853 Repositories with this on-disk format require Mercurial version 1.7.
@@ -885,12 +885,14 b' https://www.mercurial-scm.org/wiki/Missi'
885 Enabled by default.
885 Enabled by default.
886
886
887 ``revlog-compression``
887 ``revlog-compression``
888 Compression algorithm used by revlog. Supported value are `zlib` and `zstd`.
888 Compression algorithm used by revlog. Supported values are `zlib` and
889 The `zlib` engine is the historical default of Mercurial. `zstd` is a newer
889 `zstd`. The `zlib` engine is the historical default of Mercurial. `zstd` is
890 format that is usually a net win over `zlib` operating faster at better
890 a newer format that is usually a net win over `zlib`, operating faster at
891 compression rate. Use `zstd` to reduce CPU usage.
891 better compression rates. Use `zstd` to reduce CPU usage.
892
892
893 On some system, Mercurial installation may lack `zstd` supports. Default is `zlib`.
893 On some systems, the Mercurial installation may lack `zstd` support.
894
895 Default is `zlib`.
894
896
895 ``bookmarks-in-store``
897 ``bookmarks-in-store``
896 Store bookmarks in .hg/store/. This means that bookmarks are shared when
898 Store bookmarks in .hg/store/. This means that bookmarks are shared when
General Comments 0
You need to be logged in to leave comments. Login now