comparison hgext/share.py @ 43270:6a8c166a93a6

share: unmark --relative as EXPERIMENTAL Differential Revision: https://phab.mercurial-scm.org/D7001
author Pulkit Goyal <pulkit@yandex-team.ru>
date Sun, 06 Oct 2019 20:18:54 +0300
parents 8ff1ecfadcd1
children 9f70512ae2cf
comparison
equal deleted inserted replaced
43269:33fe96a5c522 43270:6a8c166a93a6
64 @command( 64 @command(
65 b'share', 65 b'share',
66 [ 66 [
67 (b'U', b'noupdate', None, _(b'do not create a working directory')), 67 (b'U', b'noupdate', None, _(b'do not create a working directory')),
68 (b'B', b'bookmarks', None, _(b'also share bookmarks')), 68 (b'B', b'bookmarks', None, _(b'also share bookmarks')),
69 ( 69 (b'', b'relative', None, _(b'point to source using a relative path'),),
70 b'',
71 b'relative',
72 None,
73 _(b'point to source using a relative path (EXPERIMENTAL)'),
74 ),
75 ], 70 ],
76 _(b'[-U] [-B] SOURCE [DEST]'), 71 _(b'[-U] [-B] SOURCE [DEST]'),
77 helpcategory=command.CATEGORY_REPO_CREATION, 72 helpcategory=command.CATEGORY_REPO_CREATION,
78 norepo=True, 73 norepo=True,
79 ) 74 )