##// END OF EJS Templates
config: add option to control creation of empty successors during rewrite...
Manuel Jacob -
r45681:b6269741 default
parent child Browse files
Show More
@@ -1068,6 +1068,9 b' coreconfigitem('
1068 b'rewrite', b'update-timestamp', default=False,
1068 b'rewrite', b'update-timestamp', default=False,
1069 )
1069 )
1070 coreconfigitem(
1070 coreconfigitem(
1071 b'rewrite', b'empty-successor', default=b'skip', experimental=True,
1072 )
1073 coreconfigitem(
1071 b'storage', b'new-repo-backend', default=b'revlogv1', experimental=True,
1074 b'storage', b'new-repo-backend', default=b'revlogv1', experimental=True,
1072 )
1075 )
1073 coreconfigitem(
1076 coreconfigitem(
@@ -1890,6 +1890,14 b' Alias definitions for revsets. See :hg:`'
1890 applicable for `hg amend`, `hg commit --amend` and `hg uncommit` in the
1890 applicable for `hg amend`, `hg commit --amend` and `hg uncommit` in the
1891 current version.
1891 current version.
1892
1892
1893 ``empty-successor``
1894
1895 Control what happens with empty successors that are the result of rewrite
1896 operations. If set to ``skip``, the successor is not created. If set to
1897 ``keep``, the empty successor is created and kept.
1898
1899 Currently, no command considers this configuration. (EXPERIMENTAL)
1900
1893 ``storage``
1901 ``storage``
1894 -----------
1902 -----------
1895
1903
General Comments 0
You need to be logged in to leave comments. Login now