comparison hgext/strip.py @ 38574:f442c9494ec7

strip: improve help text for --no-backup option Help text is modified to clearly define the meaning of --no-backup option. Differential Revision: https://phab.mercurial-scm.org/D3886
author Sushil khanchi <sushilkhanchi97@gmail.com>
date Thu, 05 Jul 2018 09:53:00 +0530
parents 46c2b19a1263
children c303d65d2e34
comparison
equal deleted inserted replaced
38573:050fbd9d103a 38574:f442c9494ec7
101 ('r', 'rev', [], _('strip specified revision (optional, ' 101 ('r', 'rev', [], _('strip specified revision (optional, '
102 'can specify revisions without this ' 102 'can specify revisions without this '
103 'option)'), _('REV')), 103 'option)'), _('REV')),
104 ('f', 'force', None, _('force removal of changesets, discard ' 104 ('f', 'force', None, _('force removal of changesets, discard '
105 'uncommitted changes (no backup)')), 105 'uncommitted changes (no backup)')),
106 ('', 'no-backup', None, _('no backups')), 106 ('', 'no-backup', None, _('do not save backup bundle')),
107 ('', 'nobackup', None, _('no backups (DEPRECATED)')), 107 ('', 'nobackup', None, _('do not save backup bundle '
108 '(DEPRECATED)')),
108 ('n', '', None, _('ignored (DEPRECATED)')), 109 ('n', '', None, _('ignored (DEPRECATED)')),
109 ('k', 'keep', None, _("do not modify working directory during " 110 ('k', 'keep', None, _("do not modify working directory during "
110 "strip")), 111 "strip")),
111 ('B', 'bookmark', [], _("remove revs only reachable from given" 112 ('B', 'bookmark', [], _("remove revs only reachable from given"
112 " bookmark"))], 113 " bookmark"))],