Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 2241:abd70a92e06f
hide deprecated undo command by making it an alias for debugundo.
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Tue, 09 May 2006 20:56:13 -0700 |
parents | 25af3f17ce95 |
children | d2118a0926bd |
comparison
equal
deleted
inserted
replaced
2238:25af3f17ce95 | 2241:abd70a92e06f |
---|---|
3094 "unbundle": | 3094 "unbundle": |
3095 (unbundle, | 3095 (unbundle, |
3096 [('u', 'update', None, | 3096 [('u', 'update', None, |
3097 _('update the working directory to tip after unbundle'))], | 3097 _('update the working directory to tip after unbundle'))], |
3098 _('hg unbundle [-u] FILE')), | 3098 _('hg unbundle [-u] FILE')), |
3099 "undo": (undo, [], _('hg undo')), | 3099 "debugundo|undo": (undo, [], _('hg undo')), |
3100 "^update|up|checkout|co": | 3100 "^update|up|checkout|co": |
3101 (update, | 3101 (update, |
3102 [('b', 'branch', '', _('checkout the head of a specific branch')), | 3102 [('b', 'branch', '', _('checkout the head of a specific branch')), |
3103 ('m', 'merge', None, _('allow merging of branches')), | 3103 ('m', 'merge', None, _('allow merging of branches')), |
3104 ('C', 'clean', None, _('overwrite locally modified files')), | 3104 ('C', 'clean', None, _('overwrite locally modified files')), |