##// END OF EJS Templates
commands: 'hg bookmark NAME' should work even with ui.strict=True...
Kevin Bullock -
r18075:2c1fc483 default
parent child Browse files
Show More
@@ -758,7 +758,7 b' def bisect(ui, repo, rev=None, extra=Non'
758 cmdutil.bailifchanged(repo)
758 cmdutil.bailifchanged(repo)
759 return hg.clean(repo, node)
759 return hg.clean(repo, node)
760
760
761 @command('bookmarks',
761 @command('bookmarks|bookmark',
762 [('f', 'force', False, _('force')),
762 [('f', 'force', False, _('force')),
763 ('r', 'rev', '', _('revision'), _('REV')),
763 ('r', 'rev', '', _('revision'), _('REV')),
764 ('d', 'delete', False, _('delete a given bookmark')),
764 ('d', 'delete', False, _('delete a given bookmark')),
@@ -40,9 +40,9 b' look up bookmark'
40 summary: 0
40 summary: 0
41
41
42
42
43 second bookmark for rev 0
43 second bookmark for rev 0, command should work even with ui.strict on
44
44
45 $ hg bookmark X2
45 $ hg --config ui.strict=1 bookmark X2
46
46
47 bookmark rev -1 again
47 bookmark rev -1 again
48
48
General Comments 0
You need to be logged in to leave comments. Login now