Mercurial > hg-stable
changeset 18075:2c1fc483efa4
commands: 'hg bookmark NAME' should work even with ui.strict=True
Before this patch, enabling strict command processing (ui.strict=True)
meant that 'hg bookmark NAME', as referenced several places in the
documentation, would not work. This adds 'bookmark' as an explicit alias
to 'bookmarks'.
author | Kevin Bullock <kbullock@ringworld.org> |
---|---|
date | Sun, 16 Dec 2012 22:00:38 -0600 |
parents | 8c9a52492d42 |
children | 3d1dc7aeca39 |
files | mercurial/commands.py tests/test-bookmarks.t |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Sun Dec 16 19:41:56 2012 +0100 +++ b/mercurial/commands.py Sun Dec 16 22:00:38 2012 -0600 @@ -758,7 +758,7 @@ cmdutil.bailifchanged(repo) return hg.clean(repo, node) -@command('bookmarks', +@command('bookmarks|bookmark', [('f', 'force', False, _('force')), ('r', 'rev', '', _('revision'), _('REV')), ('d', 'delete', False, _('delete a given bookmark')),
--- a/tests/test-bookmarks.t Sun Dec 16 19:41:56 2012 +0100 +++ b/tests/test-bookmarks.t Sun Dec 16 22:00:38 2012 -0600 @@ -40,9 +40,9 @@ summary: 0 -second bookmark for rev 0 +second bookmark for rev 0, command should work even with ui.strict on - $ hg bookmark X2 + $ hg --config ui.strict=1 bookmark X2 bookmark rev -1 again