Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 2140:6447a32aefce
Make the deprecated forget an alias of debugforget.
This way it doesn't show up in the non-debug help.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Thu, 27 Apr 2006 13:11:23 +0200 |
parents | 11ad47f22023 |
children | 635653cd73ab |
comparison
equal
deleted
inserted
replaced
2139:74f70f2e08aa | 2140:6447a32aefce |
---|---|
2976 (export, | 2976 (export, |
2977 [('o', 'output', '', _('print output to file with formatted name')), | 2977 [('o', 'output', '', _('print output to file with formatted name')), |
2978 ('a', 'text', None, _('treat all files as text')), | 2978 ('a', 'text', None, _('treat all files as text')), |
2979 ('', 'switch-parent', None, _('diff against the second parent'))], | 2979 ('', 'switch-parent', None, _('diff against the second parent'))], |
2980 _('hg export [-a] [-o OUTFILESPEC] REV...')), | 2980 _('hg export [-a] [-o OUTFILESPEC] REV...')), |
2981 "forget": | 2981 "debugforget|forget": |
2982 (forget, | 2982 (forget, |
2983 [('I', 'include', [], _('include names matching the given patterns')), | 2983 [('I', 'include', [], _('include names matching the given patterns')), |
2984 ('X', 'exclude', [], _('exclude names matching the given patterns'))], | 2984 ('X', 'exclude', [], _('exclude names matching the given patterns'))], |
2985 _('hg forget [OPTION]... FILE...')), | 2985 _('hg forget [OPTION]... FILE...')), |
2986 "grep": | 2986 "grep": |