Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 2184:2477a7183a6f
Add debugaddremove alias to addremove, so it doesn't show up in 'hg help'.
Add an explicit description of 'hg commit --addremove'.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Wed, 03 May 2006 10:53:51 +0200 |
parents | 690da72b0b16 |
children | e3eba577a0ae |
comparison
equal
deleted
inserted
replaced
2183:a56fc34d6e23 | 2184:2477a7183a6f |
---|---|
2927 "^add": | 2927 "^add": |
2928 (add, | 2928 (add, |
2929 [('I', 'include', [], _('include names matching the given patterns')), | 2929 [('I', 'include', [], _('include names matching the given patterns')), |
2930 ('X', 'exclude', [], _('exclude names matching the given patterns'))], | 2930 ('X', 'exclude', [], _('exclude names matching the given patterns'))], |
2931 _('hg add [OPTION]... [FILE]...')), | 2931 _('hg add [OPTION]... [FILE]...')), |
2932 "addremove": | 2932 "debugaddremove|addremove": |
2933 (addremove, | 2933 (addremove, |
2934 [('I', 'include', [], _('include names matching the given patterns')), | 2934 [('I', 'include', [], _('include names matching the given patterns')), |
2935 ('X', 'exclude', [], _('exclude names matching the given patterns'))], | 2935 ('X', 'exclude', [], _('exclude names matching the given patterns'))], |
2936 _('hg addremove [OPTION]... [FILE]...')), | 2936 _('hg addremove [OPTION]... [FILE]...')), |
2937 "^annotate": | 2937 "^annotate": |
2987 ('', 'remotecmd', '', | 2987 ('', 'remotecmd', '', |
2988 _('specify hg command to run on the remote side'))], | 2988 _('specify hg command to run on the remote side'))], |
2989 _('hg clone [OPTION]... SOURCE [DEST]')), | 2989 _('hg clone [OPTION]... SOURCE [DEST]')), |
2990 "^commit|ci": | 2990 "^commit|ci": |
2991 (commit, | 2991 (commit, |
2992 [('A', 'addremove', None, _('run addremove during commit')), | 2992 [('A', 'addremove', None, |
2993 _('mark new/missing files as added/removed before committing')), | |
2993 ('m', 'message', '', _('use <text> as commit message')), | 2994 ('m', 'message', '', _('use <text> as commit message')), |
2994 ('l', 'logfile', '', _('read the commit message from <file>')), | 2995 ('l', 'logfile', '', _('read the commit message from <file>')), |
2995 ('d', 'date', '', _('record datecode as commit date')), | 2996 ('d', 'date', '', _('record datecode as commit date')), |
2996 ('u', 'user', '', _('record user as commiter')), | 2997 ('u', 'user', '', _('record user as commiter')), |
2997 ('I', 'include', [], _('include names matching the given patterns')), | 2998 ('I', 'include', [], _('include names matching the given patterns')), |