##// END OF EJS Templates
Add debugaddremove alias to addremove, so it doesn't show up in 'hg help'....
Thomas Arendsen Hein -
r2184:2477a718 default
parent child Browse files
Show More
@@ -2929,7 +2929,7 b' table = {'
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'))],
@@ -2989,7 +2989,8 b' table = {'
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')),
@@ -39,7 +39,6 b' Mercurial Distributed SCM'
39 list of commands (use "hg help -v" to show aliases and global options):
39 list of commands (use "hg help -v" to show aliases and global options):
40
40
41 add add the specified files on the next commit
41 add add the specified files on the next commit
42 addremove add all new files, delete all missing files (DEPRECATED)
43 annotate show changeset information per file line
42 annotate show changeset information per file line
44 archive create unversioned archive of a repository revision
43 archive create unversioned archive of a repository revision
45 backout reverse effect of earlier changeset
44 backout reverse effect of earlier changeset
@@ -82,7 +81,6 b' list of commands (use "hg help -v" to sh'
82 verify verify the integrity of the repository
81 verify verify the integrity of the repository
83 version output version and copyright information
82 version output version and copyright information
84 add add the specified files on the next commit
83 add add the specified files on the next commit
85 addremove add all new files, delete all missing files (DEPRECATED)
86 annotate show changeset information per file line
84 annotate show changeset information per file line
87 archive create unversioned archive of a repository revision
85 archive create unversioned archive of a repository revision
88 backout reverse effect of earlier changeset
86 backout reverse effect of earlier changeset
General Comments 0
You need to be logged in to leave comments. Login now