##// 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')),
@@ -38,92 +38,90 b' Mercurial Distributed SCM'
38
38
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)
42 annotate show changeset information per file line
43 annotate show changeset information per file line
43 archive create unversioned archive of a repository revision
44 archive create unversioned archive of a repository revision
44 backout reverse effect of earlier changeset
45 backout reverse effect of earlier changeset
45 bundle create a changegroup file
46 bundle create a changegroup file
46 cat output the latest or given revisions of files
47 cat output the latest or given revisions of files
47 clone make a copy of an existing repository
48 clone make a copy of an existing repository
48 commit commit the specified files or all outstanding changes
49 commit commit the specified files or all outstanding changes
49 copy mark files as copied for the next commit
50 copy mark files as copied for the next commit
50 diff diff repository (or selected files)
51 diff diff repository (or selected files)
51 export dump the header and diffs for one or more changesets
52 export dump the header and diffs for one or more changesets
52 grep search for a pattern in specified files and revisions
53 grep search for a pattern in specified files and revisions
53 heads show current repository heads
54 heads show current repository heads
54 help show help for a given command or all commands
55 help show help for a given command or all commands
55 identify print information about the working copy
56 identify print information about the working copy
56 import import an ordered set of patches
57 import import an ordered set of patches
57 incoming show new changesets found in source
58 incoming show new changesets found in source
58 init create a new repository in the given directory
59 init create a new repository in the given directory
59 locate locate files matching specific patterns
60 locate locate files matching specific patterns
60 log show revision history of entire repository or files
61 log show revision history of entire repository or files
61 manifest output the latest or given revision of the project manifest
62 manifest output the latest or given revision of the project manifest
62 merge Merge working directory with another revision
63 merge Merge working directory with another revision
63 outgoing show changesets not found in destination
64 outgoing show changesets not found in destination
64 parents show the parents of the working dir or revision
65 parents show the parents of the working dir or revision
65 paths show definition of symbolic path names
66 paths show definition of symbolic path names
66 pull pull changes from the specified source
67 pull pull changes from the specified source
67 push push changes to the specified destination
68 push push changes to the specified destination
68 recover roll back an interrupted transaction
69 recover roll back an interrupted transaction
69 remove remove the specified files on the next commit
70 remove remove the specified files on the next commit
70 rename rename files; equivalent of copy + remove
71 rename rename files; equivalent of copy + remove
71 revert revert modified files or dirs back to their unmodified states
72 revert revert modified files or dirs back to their unmodified states
72 root print the root (top) of the current working dir
73 root print the root (top) of the current working dir
73 serve export the repository via HTTP
74 serve export the repository via HTTP
74 status show changed files in the working directory
75 status show changed files in the working directory
75 tag add a tag for the current tip or a given revision
76 tag add a tag for the current tip or a given revision
76 tags list repository tags
77 tags list repository tags
77 tip show the tip revision
78 tip show the tip revision
78 unbundle apply a changegroup file
79 unbundle apply a changegroup file
79 undo undo the last commit or pull
80 undo undo the last commit or pull
80 update update or merge working directory
81 update update or merge working directory
81 verify verify the integrity of the repository
82 verify verify the integrity of the repository
82 version output version and copyright information
83 version output version and copyright information
83 add add the specified files on the next commit
84 add add the specified files on the next commit
84 annotate show changeset information per file line
85 addremove add all new files, delete all missing files (DEPRECATED)
85 archive create unversioned archive of a repository revision
86 annotate show changeset information per file line
86 backout reverse effect of earlier changeset
87 archive create unversioned archive of a repository revision
87 bundle create a changegroup file
88 backout reverse effect of earlier changeset
88 cat output the latest or given revisions of files
89 bundle create a changegroup file
89 clone make a copy of an existing repository
90 cat output the latest or given revisions of files
90 commit commit the specified files or all outstanding changes
91 clone make a copy of an existing repository
91 copy mark files as copied for the next commit
92 commit commit the specified files or all outstanding changes
92 diff diff repository (or selected files)
93 copy mark files as copied for the next commit
93 export dump the header and diffs for one or more changesets
94 diff diff repository (or selected files)
94 grep search for a pattern in specified files and revisions
95 export dump the header and diffs for one or more changesets
95 heads show current repository heads
96 grep search for a pattern in specified files and revisions
96 help show help for a given command or all commands
97 heads show current repository heads
97 identify print information about the working copy
98 help show help for a given command or all commands
98 import import an ordered set of patches
99 identify print information about the working copy
99 incoming show new changesets found in source
100 import import an ordered set of patches
100 init create a new repository in the given directory
101 incoming show new changesets found in source
101 locate locate files matching specific patterns
102 init create a new repository in the given directory
102 log show revision history of entire repository or files
103 locate locate files matching specific patterns
103 manifest output the latest or given revision of the project manifest
104 log show revision history of entire repository or files
104 merge Merge working directory with another revision
105 manifest output the latest or given revision of the project manifest
105 outgoing show changesets not found in destination
106 merge Merge working directory with another revision
106 parents show the parents of the working dir or revision
107 outgoing show changesets not found in destination
107 paths show definition of symbolic path names
108 parents show the parents of the working dir or revision
108 pull pull changes from the specified source
109 paths show definition of symbolic path names
109 push push changes to the specified destination
110 pull pull changes from the specified source
110 recover roll back an interrupted transaction
111 push push changes to the specified destination
111 remove remove the specified files on the next commit
112 recover roll back an interrupted transaction
112 rename rename files; equivalent of copy + remove
113 remove remove the specified files on the next commit
113 revert revert modified files or dirs back to their unmodified states
114 rename rename files; equivalent of copy + remove
114 root print the root (top) of the current working dir
115 revert revert modified files or dirs back to their unmodified states
115 serve export the repository via HTTP
116 root print the root (top) of the current working dir
116 status show changed files in the working directory
117 serve export the repository via HTTP
117 tag add a tag for the current tip or a given revision
118 status show changed files in the working directory
118 tags list repository tags
119 tag add a tag for the current tip or a given revision
119 tip show the tip revision
120 tags list repository tags
120 unbundle apply a changegroup file
121 tip show the tip revision
121 undo undo the last commit or pull
122 unbundle apply a changegroup file
122 update update or merge working directory
123 undo undo the last commit or pull
123 verify verify the integrity of the repository
124 update update or merge working directory
124 version output version and copyright information
125 verify verify the integrity of the repository
126 version output version and copyright information
127 hg add [OPTION]... [FILE]...
125 hg add [OPTION]... [FILE]...
128
126
129 add the specified files on the next commit
127 add the specified files on the next commit
General Comments 0
You need to be logged in to leave comments. Login now