Show More
@@ -1134,7 +1134,7 b' def debugcheckstate(ui, repo):' | |||
|
1134 | 1134 | error = _(".hg/dirstate inconsistent with current parent's manifest") |
|
1135 | 1135 | raise util.Abort(error) |
|
1136 | 1136 | |
|
1137 |
def |
|
|
1137 | def showconfig(ui, repo, *values): | |
|
1138 | 1138 | """show combined config settings from all hgrc files |
|
1139 | 1139 | |
|
1140 | 1140 | With no args, print names and values of all config items. |
@@ -2834,7 +2834,6 b' table = {' | |||
|
2834 | 2834 | [('r', 'rev', '', _('revision to rebuild to'))], |
|
2835 | 2835 | _('debugrebuildstate [-r REV] [REV]')), |
|
2836 | 2836 | "debugcheckstate": (debugcheckstate, [], _('debugcheckstate')), |
|
2837 | "debugconfig": (debugconfig, [], _('debugconfig [NAME]...')), | |
|
2838 | 2837 | "debugsetparents": (debugsetparents, [], _('debugsetparents REV1 [REV2]')), |
|
2839 | 2838 | "debugstate": (debugstate, [], _('debugstate')), |
|
2840 | 2839 | "debugdata": (debugdata, [], _('debugdata FILE REV')), |
@@ -3017,6 +3016,7 b' table = {' | |||
|
3017 | 3016 | _('hg revert [-r REV] [NAME]...')), |
|
3018 | 3017 | "rollback": (rollback, [], _('hg rollback')), |
|
3019 | 3018 | "root": (root, [], _('hg root')), |
|
3019 | "showconfig|debugconfig": (showconfig, [], _('showconfig [NAME]...')), | |
|
3020 | 3020 | "^serve": |
|
3021 | 3021 | (serve, |
|
3022 | 3022 | [('A', 'accesslog', '', _('name of access log file to write to')), |
@@ -3086,7 +3086,7 b' table = {' | |||
|
3086 | 3086 | |
|
3087 | 3087 | norepo = ("clone init version help debugancestor debugcomplete debugdata" |
|
3088 | 3088 | " debugindex debugindexdot") |
|
3089 |
optionalrepo = ("paths serve |
|
|
3089 | optionalrepo = ("paths serve showconfig") | |
|
3090 | 3090 | |
|
3091 | 3091 | def findpossible(ui, cmd): |
|
3092 | 3092 | """ |
@@ -114,94 +114,96 b' Mercurial Distributed SCM' | |||
|
114 | 114 | |
|
115 | 115 | list of commands (use "hg help -v" to show aliases and global options): |
|
116 | 116 | |
|
117 | add add the specified files on the next commit | |
|
118 | addremove add all new files, delete all missing files | |
|
119 | annotate show changeset information per file line | |
|
120 | archive create unversioned archive of a repository revision | |
|
121 | backout reverse effect of earlier changeset | |
|
122 | bundle create a changegroup file | |
|
123 | cat output the latest or given revisions of files | |
|
124 | clone make a copy of an existing repository | |
|
125 | commit commit the specified files or all outstanding changes | |
|
126 | copy mark files as copied for the next commit | |
|
127 | diff diff repository (or selected files) | |
|
128 | export dump the header and diffs for one or more changesets | |
|
129 | grep search for a pattern in specified files and revisions | |
|
130 | heads show current repository heads | |
|
131 | help show help for a command, extension, or list of commands | |
|
132 | identify print information about the working copy | |
|
133 | import import an ordered set of patches | |
|
134 | incoming show new changesets found in source | |
|
135 | init create a new repository in the given directory | |
|
136 | locate locate files matching specific patterns | |
|
137 | log show revision history of entire repository or files | |
|
138 | manifest output the latest or given revision of the project manifest | |
|
139 | merge Merge working directory with another revision | |
|
140 | outgoing show changesets not found in destination | |
|
141 | parents show the parents of the working dir or revision | |
|
142 | paths show definition of symbolic path names | |
|
143 | pull pull changes from the specified source | |
|
144 | push push changes to the specified destination | |
|
145 | recover roll back an interrupted transaction | |
|
146 | remove remove the specified files on the next commit | |
|
147 | rename rename files; equivalent of copy + remove | |
|
148 | revert revert files or dirs to their states as of some revision | |
|
149 | rollback roll back the last transaction in this repository | |
|
150 | root print the root (top) of the current working dir | |
|
151 | serve export the repository via HTTP | |
|
152 | status show changed files in the working directory | |
|
153 | tag add a tag for the current tip or a given revision | |
|
154 | tags list repository tags | |
|
155 | tip show the tip revision | |
|
156 | unbundle apply a changegroup file | |
|
157 | update update or merge working directory | |
|
158 | verify verify the integrity of the repository | |
|
159 | version output version and copyright information | |
|
117 | add add the specified files on the next commit | |
|
118 | addremove add all new files, delete all missing files | |
|
119 | annotate show changeset information per file line | |
|
120 | archive create unversioned archive of a repository revision | |
|
121 | backout reverse effect of earlier changeset | |
|
122 | bundle create a changegroup file | |
|
123 | cat output the latest or given revisions of files | |
|
124 | clone make a copy of an existing repository | |
|
125 | commit commit the specified files or all outstanding changes | |
|
126 | copy mark files as copied for the next commit | |
|
127 | diff diff repository (or selected files) | |
|
128 | export dump the header and diffs for one or more changesets | |
|
129 | grep search for a pattern in specified files and revisions | |
|
130 | heads show current repository heads | |
|
131 | help show help for a command, extension, or list of commands | |
|
132 | identify print information about the working copy | |
|
133 | import import an ordered set of patches | |
|
134 | incoming show new changesets found in source | |
|
135 | init create a new repository in the given directory | |
|
136 | locate locate files matching specific patterns | |
|
137 | log show revision history of entire repository or files | |
|
138 | manifest output the latest or given revision of the project manifest | |
|
139 | merge Merge working directory with another revision | |
|
140 | outgoing show changesets not found in destination | |
|
141 | parents show the parents of the working dir or revision | |
|
142 | paths show definition of symbolic path names | |
|
143 | pull pull changes from the specified source | |
|
144 | push push changes to the specified destination | |
|
145 | recover roll back an interrupted transaction | |
|
146 | remove remove the specified files on the next commit | |
|
147 | rename rename files; equivalent of copy + remove | |
|
148 | revert revert files or dirs to their states as of some revision | |
|
149 | rollback roll back the last transaction in this repository | |
|
150 | root print the root (top) of the current working dir | |
|
151 | serve export the repository via HTTP | |
|
152 | showconfig show combined config settings from all hgrc files | |
|
153 | status show changed files in the working directory | |
|
154 | tag add a tag for the current tip or a given revision | |
|
155 | tags list repository tags | |
|
156 | tip show the tip revision | |
|
157 | unbundle apply a changegroup file | |
|
158 | update update or merge working directory | |
|
159 | verify verify the integrity of the repository | |
|
160 | version output version and copyright information | |
|
160 | 161 | Mercurial Distributed SCM |
|
161 | 162 | |
|
162 | 163 | list of commands (use "hg help -v" to show aliases and global options): |
|
163 | 164 | |
|
164 | add add the specified files on the next commit | |
|
165 | addremove add all new files, delete all missing files | |
|
166 | annotate show changeset information per file line | |
|
167 | archive create unversioned archive of a repository revision | |
|
168 | backout reverse effect of earlier changeset | |
|
169 | bundle create a changegroup file | |
|
170 | cat output the latest or given revisions of files | |
|
171 | clone make a copy of an existing repository | |
|
172 | commit commit the specified files or all outstanding changes | |
|
173 | copy mark files as copied for the next commit | |
|
174 | diff diff repository (or selected files) | |
|
175 | export dump the header and diffs for one or more changesets | |
|
176 | grep search for a pattern in specified files and revisions | |
|
177 | heads show current repository heads | |
|
178 | help show help for a command, extension, or list of commands | |
|
179 | identify print information about the working copy | |
|
180 | import import an ordered set of patches | |
|
181 | incoming show new changesets found in source | |
|
182 | init create a new repository in the given directory | |
|
183 | locate locate files matching specific patterns | |
|
184 | log show revision history of entire repository or files | |
|
185 | manifest output the latest or given revision of the project manifest | |
|
186 | merge Merge working directory with another revision | |
|
187 | outgoing show changesets not found in destination | |
|
188 | parents show the parents of the working dir or revision | |
|
189 | paths show definition of symbolic path names | |
|
190 | pull pull changes from the specified source | |
|
191 | push push changes to the specified destination | |
|
192 | recover roll back an interrupted transaction | |
|
193 | remove remove the specified files on the next commit | |
|
194 | rename rename files; equivalent of copy + remove | |
|
195 | revert revert files or dirs to their states as of some revision | |
|
196 | rollback roll back the last transaction in this repository | |
|
197 | root print the root (top) of the current working dir | |
|
198 | serve export the repository via HTTP | |
|
199 | status show changed files in the working directory | |
|
200 | tag add a tag for the current tip or a given revision | |
|
201 | tags list repository tags | |
|
202 | tip show the tip revision | |
|
203 | unbundle apply a changegroup file | |
|
204 | update update or merge working directory | |
|
205 | verify verify the integrity of the repository | |
|
206 | version output version and copyright information | |
|
165 | add add the specified files on the next commit | |
|
166 | addremove add all new files, delete all missing files | |
|
167 | annotate show changeset information per file line | |
|
168 | archive create unversioned archive of a repository revision | |
|
169 | backout reverse effect of earlier changeset | |
|
170 | bundle create a changegroup file | |
|
171 | cat output the latest or given revisions of files | |
|
172 | clone make a copy of an existing repository | |
|
173 | commit commit the specified files or all outstanding changes | |
|
174 | copy mark files as copied for the next commit | |
|
175 | diff diff repository (or selected files) | |
|
176 | export dump the header and diffs for one or more changesets | |
|
177 | grep search for a pattern in specified files and revisions | |
|
178 | heads show current repository heads | |
|
179 | help show help for a command, extension, or list of commands | |
|
180 | identify print information about the working copy | |
|
181 | import import an ordered set of patches | |
|
182 | incoming show new changesets found in source | |
|
183 | init create a new repository in the given directory | |
|
184 | locate locate files matching specific patterns | |
|
185 | log show revision history of entire repository or files | |
|
186 | manifest output the latest or given revision of the project manifest | |
|
187 | merge Merge working directory with another revision | |
|
188 | outgoing show changesets not found in destination | |
|
189 | parents show the parents of the working dir or revision | |
|
190 | paths show definition of symbolic path names | |
|
191 | pull pull changes from the specified source | |
|
192 | push push changes to the specified destination | |
|
193 | recover roll back an interrupted transaction | |
|
194 | remove remove the specified files on the next commit | |
|
195 | rename rename files; equivalent of copy + remove | |
|
196 | revert revert files or dirs to their states as of some revision | |
|
197 | rollback roll back the last transaction in this repository | |
|
198 | root print the root (top) of the current working dir | |
|
199 | serve export the repository via HTTP | |
|
200 | showconfig show combined config settings from all hgrc files | |
|
201 | status show changed files in the working directory | |
|
202 | tag add a tag for the current tip or a given revision | |
|
203 | tags list repository tags | |
|
204 | tip show the tip revision | |
|
205 | unbundle apply a changegroup file | |
|
206 | update update or merge working directory | |
|
207 | verify verify the integrity of the repository | |
|
208 | version output version and copyright information | |
|
207 | 209 | %% not tested: --debugger |
@@ -38,92 +38,94 b' Mercurial Distributed SCM' | |||
|
38 | 38 | |
|
39 | 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 | |
|
42 | addremove add all new files, delete all missing files | |
|
43 | annotate show changeset information per file line | |
|
44 | archive create unversioned archive of a repository revision | |
|
45 | backout reverse effect of earlier changeset | |
|
46 | bundle create a changegroup file | |
|
47 | cat output the latest or given revisions of files | |
|
48 | clone make a copy of an existing repository | |
|
49 | commit commit the specified files or all outstanding changes | |
|
50 | copy mark files as copied for the next commit | |
|
51 | diff diff repository (or selected files) | |
|
52 | export dump the header and diffs for one or more changesets | |
|
53 | grep search for a pattern in specified files and revisions | |
|
54 | heads show current repository heads | |
|
55 | help show help for a command, extension, or list of commands | |
|
56 | identify print information about the working copy | |
|
57 | import import an ordered set of patches | |
|
58 | incoming show new changesets found in source | |
|
59 | init create a new repository in the given directory | |
|
60 | locate locate files matching specific patterns | |
|
61 | log show revision history of entire repository or files | |
|
62 | manifest output the latest or given revision of the project manifest | |
|
63 | merge Merge working directory with another revision | |
|
64 | outgoing show changesets not found in destination | |
|
65 | parents show the parents of the working dir or revision | |
|
66 | paths show definition of symbolic path names | |
|
67 | pull pull changes from the specified source | |
|
68 | push push changes to the specified destination | |
|
69 | recover roll back an interrupted transaction | |
|
70 | remove remove the specified files on the next commit | |
|
71 | rename rename files; equivalent of copy + remove | |
|
72 | revert revert files or dirs to their states as of some revision | |
|
73 | rollback roll back the last transaction in this repository | |
|
74 | root print the root (top) of the current working dir | |
|
75 | serve export the repository via HTTP | |
|
76 | status show changed files in the working directory | |
|
77 | tag add a tag for the current tip or a given revision | |
|
78 | tags list repository tags | |
|
79 | tip show the tip revision | |
|
80 | unbundle apply a changegroup file | |
|
81 | update update or merge working directory | |
|
82 | verify verify the integrity of the repository | |
|
83 | version output version and copyright information | |
|
84 | add add the specified files on the next commit | |
|
85 | addremove add all new files, delete all missing files | |
|
86 | annotate show changeset information per file line | |
|
87 | archive create unversioned archive of a repository revision | |
|
88 | backout reverse effect of earlier changeset | |
|
89 | bundle create a changegroup file | |
|
90 | cat output the latest or given revisions of files | |
|
91 | clone make a copy of an existing repository | |
|
92 | commit commit the specified files or all outstanding changes | |
|
93 | copy mark files as copied for the next commit | |
|
94 | diff diff repository (or selected files) | |
|
95 | export dump the header and diffs for one or more changesets | |
|
96 | grep search for a pattern in specified files and revisions | |
|
97 | heads show current repository heads | |
|
98 | help show help for a command, extension, or list of commands | |
|
99 | identify print information about the working copy | |
|
100 | import import an ordered set of patches | |
|
101 | incoming show new changesets found in source | |
|
102 | init create a new repository in the given directory | |
|
103 | locate locate files matching specific patterns | |
|
104 | log show revision history of entire repository or files | |
|
105 | manifest output the latest or given revision of the project manifest | |
|
106 | merge Merge working directory with another revision | |
|
107 | outgoing show changesets not found in destination | |
|
108 | parents show the parents of the working dir or revision | |
|
109 | paths show definition of symbolic path names | |
|
110 | pull pull changes from the specified source | |
|
111 |
pu |
|
|
112 | recover roll back an interrupted transaction | |
|
113 | remove remove the specified files on the next commit | |
|
114 | rename rename files; equivalent of copy + remove | |
|
115 | revert revert files or dirs to their states as of some revision | |
|
116 | rollback roll back the last transaction in this repository | |
|
117 | root print the root (top) of the current working dir | |
|
118 | serve export the repository via HTTP | |
|
119 | status show changed files in the working directory | |
|
120 | tag add a tag for the current tip or a given revision | |
|
121 | tags list repository tags | |
|
122 | tip show the tip revision | |
|
123 | unbundle apply a changegroup file | |
|
124 | update update or merge working directory | |
|
125 | verify verify the integrity of the repository | |
|
126 | version output version and copyright information | |
|
41 | add add the specified files on the next commit | |
|
42 | addremove add all new files, delete all missing files | |
|
43 | annotate show changeset information per file line | |
|
44 | archive create unversioned archive of a repository revision | |
|
45 | backout reverse effect of earlier changeset | |
|
46 | bundle create a changegroup file | |
|
47 | cat output the latest or given revisions of files | |
|
48 | clone make a copy of an existing repository | |
|
49 | commit commit the specified files or all outstanding changes | |
|
50 | copy mark files as copied for the next commit | |
|
51 | diff diff repository (or selected files) | |
|
52 | export dump the header and diffs for one or more changesets | |
|
53 | grep search for a pattern in specified files and revisions | |
|
54 | heads show current repository heads | |
|
55 | help show help for a command, extension, or list of commands | |
|
56 | identify print information about the working copy | |
|
57 | import import an ordered set of patches | |
|
58 | incoming show new changesets found in source | |
|
59 | init create a new repository in the given directory | |
|
60 | locate locate files matching specific patterns | |
|
61 | log show revision history of entire repository or files | |
|
62 | manifest output the latest or given revision of the project manifest | |
|
63 | merge Merge working directory with another revision | |
|
64 | outgoing show changesets not found in destination | |
|
65 | parents show the parents of the working dir or revision | |
|
66 | paths show definition of symbolic path names | |
|
67 | pull pull changes from the specified source | |
|
68 | push push changes to the specified destination | |
|
69 | recover roll back an interrupted transaction | |
|
70 | remove remove the specified files on the next commit | |
|
71 | rename rename files; equivalent of copy + remove | |
|
72 | revert revert files or dirs to their states as of some revision | |
|
73 | rollback roll back the last transaction in this repository | |
|
74 | root print the root (top) of the current working dir | |
|
75 | serve export the repository via HTTP | |
|
76 | showconfig show combined config settings from all hgrc files | |
|
77 | status show changed files in the working directory | |
|
78 | tag add a tag for the current tip or a given revision | |
|
79 | tags list repository tags | |
|
80 | tip show the tip revision | |
|
81 | unbundle apply a changegroup file | |
|
82 | update update or merge working directory | |
|
83 | verify verify the integrity of the repository | |
|
84 | version output version and copyright information | |
|
85 | add add the specified files on the next commit | |
|
86 | addremove add all new files, delete all missing files | |
|
87 | annotate show changeset information per file line | |
|
88 | archive create unversioned archive of a repository revision | |
|
89 | backout reverse effect of earlier changeset | |
|
90 | bundle create a changegroup file | |
|
91 | cat output the latest or given revisions of files | |
|
92 | clone make a copy of an existing repository | |
|
93 | commit commit the specified files or all outstanding changes | |
|
94 | copy mark files as copied for the next commit | |
|
95 | diff diff repository (or selected files) | |
|
96 | export dump the header and diffs for one or more changesets | |
|
97 | grep search for a pattern in specified files and revisions | |
|
98 | heads show current repository heads | |
|
99 | help show help for a command, extension, or list of commands | |
|
100 | identify print information about the working copy | |
|
101 | import import an ordered set of patches | |
|
102 | incoming show new changesets found in source | |
|
103 | init create a new repository in the given directory | |
|
104 | locate locate files matching specific patterns | |
|
105 | log show revision history of entire repository or files | |
|
106 | manifest output the latest or given revision of the project manifest | |
|
107 | merge Merge working directory with another revision | |
|
108 | outgoing show changesets not found in destination | |
|
109 | parents show the parents of the working dir or revision | |
|
110 | paths show definition of symbolic path names | |
|
111 | pull pull changes from the specified source | |
|
112 | push push changes to the specified destination | |
|
113 | recover roll back an interrupted transaction | |
|
114 | remove remove the specified files on the next commit | |
|
115 | rename rename files; equivalent of copy + remove | |
|
116 | revert revert files or dirs to their states as of some revision | |
|
117 | rollback roll back the last transaction in this repository | |
|
118 | root print the root (top) of the current working dir | |
|
119 | serve export the repository via HTTP | |
|
120 | showconfig show combined config settings from all hgrc files | |
|
121 | status show changed files in the working directory | |
|
122 | tag add a tag for the current tip or a given revision | |
|
123 | tags list repository tags | |
|
124 | tip show the tip revision | |
|
125 | unbundle apply a changegroup file | |
|
126 | update update or merge working directory | |
|
127 | verify verify the integrity of the repository | |
|
128 | version output version and copyright information | |
|
127 | 129 | hg add [OPTION]... [FILE]... |
|
128 | 130 | |
|
129 | 131 | add the specified files on the next commit |
General Comments 0
You need to be logged in to leave comments.
Login now