##// END OF EJS Templates
Avoid calling heads() twice on every hg commit....
Alexis S. L. Carvalho -
r6369:53912d30 default
parent child Browse files
Show More
@@ -1,3254 +1,3263 b''
1 # commands.py - command processing for mercurial
1 # commands.py - command processing for mercurial
2 #
2 #
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
4 #
4 #
5 # This software may be used and distributed according to the terms
5 # This software may be used and distributed according to the terms
6 # of the GNU General Public License, incorporated herein by reference.
6 # of the GNU General Public License, incorporated herein by reference.
7
7
8 from node import hex, nullid, nullrev, short
8 from node import hex, nullid, nullrev, short
9 from repo import RepoError
9 from repo import RepoError
10 from i18n import _
10 from i18n import _
11 import os, re, sys, urllib
11 import os, re, sys, urllib
12 import hg, util, revlog, bundlerepo, extensions, copies
12 import hg, util, revlog, bundlerepo, extensions, copies
13 import difflib, patch, time, help, mdiff, tempfile
13 import difflib, patch, time, help, mdiff, tempfile
14 import version, socket
14 import version, socket
15 import archival, changegroup, cmdutil, hgweb.server, sshserver, hbisect
15 import archival, changegroup, cmdutil, hgweb.server, sshserver, hbisect
16
16
17 # Commands start here, listed alphabetically
17 # Commands start here, listed alphabetically
18
18
19 def add(ui, repo, *pats, **opts):
19 def add(ui, repo, *pats, **opts):
20 """add the specified files on the next commit
20 """add the specified files on the next commit
21
21
22 Schedule files to be version controlled and added to the repository.
22 Schedule files to be version controlled and added to the repository.
23
23
24 The files will be added to the repository at the next commit. To
24 The files will be added to the repository at the next commit. To
25 undo an add before that, see hg revert.
25 undo an add before that, see hg revert.
26
26
27 If no names are given, add all files in the repository.
27 If no names are given, add all files in the repository.
28 """
28 """
29
29
30 rejected = None
30 rejected = None
31 exacts = {}
31 exacts = {}
32 names = []
32 names = []
33 for src, abs, rel, exact in cmdutil.walk(repo, pats, opts,
33 for src, abs, rel, exact in cmdutil.walk(repo, pats, opts,
34 badmatch=util.always):
34 badmatch=util.always):
35 if exact:
35 if exact:
36 if ui.verbose:
36 if ui.verbose:
37 ui.status(_('adding %s\n') % rel)
37 ui.status(_('adding %s\n') % rel)
38 names.append(abs)
38 names.append(abs)
39 exacts[abs] = 1
39 exacts[abs] = 1
40 elif abs not in repo.dirstate:
40 elif abs not in repo.dirstate:
41 ui.status(_('adding %s\n') % rel)
41 ui.status(_('adding %s\n') % rel)
42 names.append(abs)
42 names.append(abs)
43 if not opts.get('dry_run'):
43 if not opts.get('dry_run'):
44 rejected = repo.add(names)
44 rejected = repo.add(names)
45 rejected = [p for p in rejected if p in exacts]
45 rejected = [p for p in rejected if p in exacts]
46 return rejected and 1 or 0
46 return rejected and 1 or 0
47
47
48 def addremove(ui, repo, *pats, **opts):
48 def addremove(ui, repo, *pats, **opts):
49 """add all new files, delete all missing files
49 """add all new files, delete all missing files
50
50
51 Add all new files and remove all missing files from the repository.
51 Add all new files and remove all missing files from the repository.
52
52
53 New files are ignored if they match any of the patterns in .hgignore. As
53 New files are ignored if they match any of the patterns in .hgignore. As
54 with add, these changes take effect at the next commit.
54 with add, these changes take effect at the next commit.
55
55
56 Use the -s option to detect renamed files. With a parameter > 0,
56 Use the -s option to detect renamed files. With a parameter > 0,
57 this compares every removed file with every added file and records
57 this compares every removed file with every added file and records
58 those similar enough as renames. This option takes a percentage
58 those similar enough as renames. This option takes a percentage
59 between 0 (disabled) and 100 (files must be identical) as its
59 between 0 (disabled) and 100 (files must be identical) as its
60 parameter. Detecting renamed files this way can be expensive.
60 parameter. Detecting renamed files this way can be expensive.
61 """
61 """
62 try:
62 try:
63 sim = float(opts.get('similarity') or 0)
63 sim = float(opts.get('similarity') or 0)
64 except ValueError:
64 except ValueError:
65 raise util.Abort(_('similarity must be a number'))
65 raise util.Abort(_('similarity must be a number'))
66 if sim < 0 or sim > 100:
66 if sim < 0 or sim > 100:
67 raise util.Abort(_('similarity must be between 0 and 100'))
67 raise util.Abort(_('similarity must be between 0 and 100'))
68 return cmdutil.addremove(repo, pats, opts, similarity=sim/100.)
68 return cmdutil.addremove(repo, pats, opts, similarity=sim/100.)
69
69
70 def annotate(ui, repo, *pats, **opts):
70 def annotate(ui, repo, *pats, **opts):
71 """show changeset information per file line
71 """show changeset information per file line
72
72
73 List changes in files, showing the revision id responsible for each line
73 List changes in files, showing the revision id responsible for each line
74
74
75 This command is useful to discover who did a change or when a change took
75 This command is useful to discover who did a change or when a change took
76 place.
76 place.
77
77
78 Without the -a option, annotate will avoid processing files it
78 Without the -a option, annotate will avoid processing files it
79 detects as binary. With -a, annotate will generate an annotation
79 detects as binary. With -a, annotate will generate an annotation
80 anyway, probably with undesirable results.
80 anyway, probably with undesirable results.
81 """
81 """
82 datefunc = ui.quiet and util.shortdate or util.datestr
82 datefunc = ui.quiet and util.shortdate or util.datestr
83 getdate = util.cachefunc(lambda x: datefunc(x[0].date()))
83 getdate = util.cachefunc(lambda x: datefunc(x[0].date()))
84
84
85 if not pats:
85 if not pats:
86 raise util.Abort(_('at least one file name or pattern required'))
86 raise util.Abort(_('at least one file name or pattern required'))
87
87
88 opmap = [('user', lambda x: ui.shortuser(x[0].user())),
88 opmap = [('user', lambda x: ui.shortuser(x[0].user())),
89 ('number', lambda x: str(x[0].rev())),
89 ('number', lambda x: str(x[0].rev())),
90 ('changeset', lambda x: short(x[0].node())),
90 ('changeset', lambda x: short(x[0].node())),
91 ('date', getdate),
91 ('date', getdate),
92 ('follow', lambda x: x[0].path()),
92 ('follow', lambda x: x[0].path()),
93 ]
93 ]
94
94
95 if (not opts['user'] and not opts['changeset'] and not opts['date']
95 if (not opts['user'] and not opts['changeset'] and not opts['date']
96 and not opts['follow']):
96 and not opts['follow']):
97 opts['number'] = 1
97 opts['number'] = 1
98
98
99 linenumber = opts.get('line_number') is not None
99 linenumber = opts.get('line_number') is not None
100 if (linenumber and (not opts['changeset']) and (not opts['number'])):
100 if (linenumber and (not opts['changeset']) and (not opts['number'])):
101 raise util.Abort(_('at least one of -n/-c is required for -l'))
101 raise util.Abort(_('at least one of -n/-c is required for -l'))
102
102
103 funcmap = [func for op, func in opmap if opts.get(op)]
103 funcmap = [func for op, func in opmap if opts.get(op)]
104 if linenumber:
104 if linenumber:
105 lastfunc = funcmap[-1]
105 lastfunc = funcmap[-1]
106 funcmap[-1] = lambda x: "%s:%s" % (lastfunc(x), x[1])
106 funcmap[-1] = lambda x: "%s:%s" % (lastfunc(x), x[1])
107
107
108 ctx = repo.changectx(opts['rev'])
108 ctx = repo.changectx(opts['rev'])
109
109
110 for src, abs, rel, exact in cmdutil.walk(repo, pats, opts,
110 for src, abs, rel, exact in cmdutil.walk(repo, pats, opts,
111 node=ctx.node()):
111 node=ctx.node()):
112 fctx = ctx.filectx(abs)
112 fctx = ctx.filectx(abs)
113 if not opts['text'] and util.binary(fctx.data()):
113 if not opts['text'] and util.binary(fctx.data()):
114 ui.write(_("%s: binary file\n") % ((pats and rel) or abs))
114 ui.write(_("%s: binary file\n") % ((pats and rel) or abs))
115 continue
115 continue
116
116
117 lines = fctx.annotate(follow=opts.get('follow'),
117 lines = fctx.annotate(follow=opts.get('follow'),
118 linenumber=linenumber)
118 linenumber=linenumber)
119 pieces = []
119 pieces = []
120
120
121 for f in funcmap:
121 for f in funcmap:
122 l = [f(n) for n, dummy in lines]
122 l = [f(n) for n, dummy in lines]
123 if l:
123 if l:
124 m = max(map(len, l))
124 m = max(map(len, l))
125 pieces.append(["%*s" % (m, x) for x in l])
125 pieces.append(["%*s" % (m, x) for x in l])
126
126
127 if pieces:
127 if pieces:
128 for p, l in zip(zip(*pieces), lines):
128 for p, l in zip(zip(*pieces), lines):
129 ui.write("%s: %s" % (" ".join(p), l[1]))
129 ui.write("%s: %s" % (" ".join(p), l[1]))
130
130
131 def archive(ui, repo, dest, **opts):
131 def archive(ui, repo, dest, **opts):
132 '''create unversioned archive of a repository revision
132 '''create unversioned archive of a repository revision
133
133
134 By default, the revision used is the parent of the working
134 By default, the revision used is the parent of the working
135 directory; use "-r" to specify a different revision.
135 directory; use "-r" to specify a different revision.
136
136
137 To specify the type of archive to create, use "-t". Valid
137 To specify the type of archive to create, use "-t". Valid
138 types are:
138 types are:
139
139
140 "files" (default): a directory full of files
140 "files" (default): a directory full of files
141 "tar": tar archive, uncompressed
141 "tar": tar archive, uncompressed
142 "tbz2": tar archive, compressed using bzip2
142 "tbz2": tar archive, compressed using bzip2
143 "tgz": tar archive, compressed using gzip
143 "tgz": tar archive, compressed using gzip
144 "uzip": zip archive, uncompressed
144 "uzip": zip archive, uncompressed
145 "zip": zip archive, compressed using deflate
145 "zip": zip archive, compressed using deflate
146
146
147 The exact name of the destination archive or directory is given
147 The exact name of the destination archive or directory is given
148 using a format string; see "hg help export" for details.
148 using a format string; see "hg help export" for details.
149
149
150 Each member added to an archive file has a directory prefix
150 Each member added to an archive file has a directory prefix
151 prepended. Use "-p" to specify a format string for the prefix.
151 prepended. Use "-p" to specify a format string for the prefix.
152 The default is the basename of the archive, with suffixes removed.
152 The default is the basename of the archive, with suffixes removed.
153 '''
153 '''
154
154
155 ctx = repo.changectx(opts['rev'])
155 ctx = repo.changectx(opts['rev'])
156 if not ctx:
156 if not ctx:
157 raise util.Abort(_('repository has no revisions'))
157 raise util.Abort(_('repository has no revisions'))
158 node = ctx.node()
158 node = ctx.node()
159 dest = cmdutil.make_filename(repo, dest, node)
159 dest = cmdutil.make_filename(repo, dest, node)
160 if os.path.realpath(dest) == repo.root:
160 if os.path.realpath(dest) == repo.root:
161 raise util.Abort(_('repository root cannot be destination'))
161 raise util.Abort(_('repository root cannot be destination'))
162 dummy, matchfn, dummy = cmdutil.matchpats(repo, [], opts)
162 dummy, matchfn, dummy = cmdutil.matchpats(repo, [], opts)
163 kind = opts.get('type') or 'files'
163 kind = opts.get('type') or 'files'
164 prefix = opts['prefix']
164 prefix = opts['prefix']
165 if dest == '-':
165 if dest == '-':
166 if kind == 'files':
166 if kind == 'files':
167 raise util.Abort(_('cannot archive plain files to stdout'))
167 raise util.Abort(_('cannot archive plain files to stdout'))
168 dest = sys.stdout
168 dest = sys.stdout
169 if not prefix: prefix = os.path.basename(repo.root) + '-%h'
169 if not prefix: prefix = os.path.basename(repo.root) + '-%h'
170 prefix = cmdutil.make_filename(repo, prefix, node)
170 prefix = cmdutil.make_filename(repo, prefix, node)
171 archival.archive(repo, dest, node, kind, not opts['no_decode'],
171 archival.archive(repo, dest, node, kind, not opts['no_decode'],
172 matchfn, prefix)
172 matchfn, prefix)
173
173
174 def backout(ui, repo, node=None, rev=None, **opts):
174 def backout(ui, repo, node=None, rev=None, **opts):
175 '''reverse effect of earlier changeset
175 '''reverse effect of earlier changeset
176
176
177 Commit the backed out changes as a new changeset. The new
177 Commit the backed out changes as a new changeset. The new
178 changeset is a child of the backed out changeset.
178 changeset is a child of the backed out changeset.
179
179
180 If you back out a changeset other than the tip, a new head is
180 If you back out a changeset other than the tip, a new head is
181 created. This head will be the new tip and you should merge this
181 created. This head will be the new tip and you should merge this
182 backout changeset with another head (current one by default).
182 backout changeset with another head (current one by default).
183
183
184 The --merge option remembers the parent of the working directory
184 The --merge option remembers the parent of the working directory
185 before starting the backout, then merges the new head with that
185 before starting the backout, then merges the new head with that
186 changeset afterwards. This saves you from doing the merge by
186 changeset afterwards. This saves you from doing the merge by
187 hand. The result of this merge is not committed, as for a normal
187 hand. The result of this merge is not committed, as for a normal
188 merge.
188 merge.
189
189
190 See 'hg help dates' for a list of formats valid for -d/--date.
190 See 'hg help dates' for a list of formats valid for -d/--date.
191 '''
191 '''
192 if rev and node:
192 if rev and node:
193 raise util.Abort(_("please specify just one revision"))
193 raise util.Abort(_("please specify just one revision"))
194
194
195 if not rev:
195 if not rev:
196 rev = node
196 rev = node
197
197
198 if not rev:
198 if not rev:
199 raise util.Abort(_("please specify a revision to backout"))
199 raise util.Abort(_("please specify a revision to backout"))
200
200
201 date = opts.get('date')
201 date = opts.get('date')
202 if date:
202 if date:
203 opts['date'] = util.parsedate(date)
203 opts['date'] = util.parsedate(date)
204
204
205 cmdutil.bail_if_changed(repo)
205 cmdutil.bail_if_changed(repo)
206 node = repo.lookup(rev)
206 node = repo.lookup(rev)
207
207
208 op1, op2 = repo.dirstate.parents()
208 op1, op2 = repo.dirstate.parents()
209 a = repo.changelog.ancestor(op1, node)
209 a = repo.changelog.ancestor(op1, node)
210 if a != node:
210 if a != node:
211 raise util.Abort(_('cannot back out change on a different branch'))
211 raise util.Abort(_('cannot back out change on a different branch'))
212
212
213 p1, p2 = repo.changelog.parents(node)
213 p1, p2 = repo.changelog.parents(node)
214 if p1 == nullid:
214 if p1 == nullid:
215 raise util.Abort(_('cannot back out a change with no parents'))
215 raise util.Abort(_('cannot back out a change with no parents'))
216 if p2 != nullid:
216 if p2 != nullid:
217 if not opts['parent']:
217 if not opts['parent']:
218 raise util.Abort(_('cannot back out a merge changeset without '
218 raise util.Abort(_('cannot back out a merge changeset without '
219 '--parent'))
219 '--parent'))
220 p = repo.lookup(opts['parent'])
220 p = repo.lookup(opts['parent'])
221 if p not in (p1, p2):
221 if p not in (p1, p2):
222 raise util.Abort(_('%s is not a parent of %s') %
222 raise util.Abort(_('%s is not a parent of %s') %
223 (short(p), short(node)))
223 (short(p), short(node)))
224 parent = p
224 parent = p
225 else:
225 else:
226 if opts['parent']:
226 if opts['parent']:
227 raise util.Abort(_('cannot use --parent on non-merge changeset'))
227 raise util.Abort(_('cannot use --parent on non-merge changeset'))
228 parent = p1
228 parent = p1
229
229
230 hg.clean(repo, node, show_stats=False)
230 hg.clean(repo, node, show_stats=False)
231 revert_opts = opts.copy()
231 revert_opts = opts.copy()
232 revert_opts['date'] = None
232 revert_opts['date'] = None
233 revert_opts['all'] = True
233 revert_opts['all'] = True
234 revert_opts['rev'] = hex(parent)
234 revert_opts['rev'] = hex(parent)
235 revert_opts['no_backup'] = None
235 revert_opts['no_backup'] = None
236 revert(ui, repo, **revert_opts)
236 revert(ui, repo, **revert_opts)
237 commit_opts = opts.copy()
237 commit_opts = opts.copy()
238 commit_opts['addremove'] = False
238 commit_opts['addremove'] = False
239 if not commit_opts['message'] and not commit_opts['logfile']:
239 if not commit_opts['message'] and not commit_opts['logfile']:
240 commit_opts['message'] = _("Backed out changeset %s") % (short(node))
240 commit_opts['message'] = _("Backed out changeset %s") % (short(node))
241 commit_opts['force_editor'] = True
241 commit_opts['force_editor'] = True
242 commit(ui, repo, **commit_opts)
242 commit(ui, repo, **commit_opts)
243 def nice(node):
243 def nice(node):
244 return '%d:%s' % (repo.changelog.rev(node), short(node))
244 return '%d:%s' % (repo.changelog.rev(node), short(node))
245 ui.status(_('changeset %s backs out changeset %s\n') %
245 ui.status(_('changeset %s backs out changeset %s\n') %
246 (nice(repo.changelog.tip()), nice(node)))
246 (nice(repo.changelog.tip()), nice(node)))
247 if op1 != node:
247 if op1 != node:
248 hg.clean(repo, op1, show_stats=False)
248 hg.clean(repo, op1, show_stats=False)
249 if opts['merge']:
249 if opts['merge']:
250 ui.status(_('merging with changeset %s\n') % nice(repo.changelog.tip()))
250 ui.status(_('merging with changeset %s\n') % nice(repo.changelog.tip()))
251 hg.merge(repo, hex(repo.changelog.tip()))
251 hg.merge(repo, hex(repo.changelog.tip()))
252 else:
252 else:
253 ui.status(_('the backout changeset is a new head - '
253 ui.status(_('the backout changeset is a new head - '
254 'do not forget to merge\n'))
254 'do not forget to merge\n'))
255 ui.status(_('(use "backout --merge" '
255 ui.status(_('(use "backout --merge" '
256 'if you want to auto-merge)\n'))
256 'if you want to auto-merge)\n'))
257
257
258 def bisect(ui, repo, rev=None, extra=None,
258 def bisect(ui, repo, rev=None, extra=None,
259 reset=None, good=None, bad=None, skip=None, noupdate=None):
259 reset=None, good=None, bad=None, skip=None, noupdate=None):
260 """subdivision search of changesets
260 """subdivision search of changesets
261
261
262 This command helps to find changesets which introduce problems.
262 This command helps to find changesets which introduce problems.
263 To use, mark the earliest changeset you know exhibits the problem
263 To use, mark the earliest changeset you know exhibits the problem
264 as bad, then mark the latest changeset which is free from the
264 as bad, then mark the latest changeset which is free from the
265 problem as good. Bisect will update your working directory to a
265 problem as good. Bisect will update your working directory to a
266 revision for testing. Once you have performed tests, mark the
266 revision for testing. Once you have performed tests, mark the
267 working directory as bad or good and bisect will either update to
267 working directory as bad or good and bisect will either update to
268 another candidate changeset or announce that it has found the bad
268 another candidate changeset or announce that it has found the bad
269 revision.
269 revision.
270 """
270 """
271 # backward compatibility
271 # backward compatibility
272 if rev in "good bad reset init".split():
272 if rev in "good bad reset init".split():
273 ui.warn(_("(use of 'hg bisect <cmd>' is deprecated)\n"))
273 ui.warn(_("(use of 'hg bisect <cmd>' is deprecated)\n"))
274 cmd, rev, extra = rev, extra, None
274 cmd, rev, extra = rev, extra, None
275 if cmd == "good":
275 if cmd == "good":
276 good = True
276 good = True
277 elif cmd == "bad":
277 elif cmd == "bad":
278 bad = True
278 bad = True
279 else:
279 else:
280 reset = True
280 reset = True
281 elif extra or good + bad + skip + reset > 1:
281 elif extra or good + bad + skip + reset > 1:
282 raise util.Abort("Incompatible arguments")
282 raise util.Abort("Incompatible arguments")
283
283
284 if reset:
284 if reset:
285 p = repo.join("bisect.state")
285 p = repo.join("bisect.state")
286 if os.path.exists(p):
286 if os.path.exists(p):
287 os.unlink(p)
287 os.unlink(p)
288 return
288 return
289
289
290 # load state
290 # load state
291 state = {'good': [], 'bad': [], 'skip': []}
291 state = {'good': [], 'bad': [], 'skip': []}
292 if os.path.exists(repo.join("bisect.state")):
292 if os.path.exists(repo.join("bisect.state")):
293 for l in repo.opener("bisect.state"):
293 for l in repo.opener("bisect.state"):
294 kind, node = l[:-1].split()
294 kind, node = l[:-1].split()
295 node = repo.lookup(node)
295 node = repo.lookup(node)
296 if kind not in state:
296 if kind not in state:
297 raise util.Abort(_("unknown bisect kind %s") % kind)
297 raise util.Abort(_("unknown bisect kind %s") % kind)
298 state[kind].append(node)
298 state[kind].append(node)
299
299
300 # update state
300 # update state
301 node = repo.lookup(rev or '.')
301 node = repo.lookup(rev or '.')
302 if good:
302 if good:
303 state['good'].append(node)
303 state['good'].append(node)
304 elif bad:
304 elif bad:
305 state['bad'].append(node)
305 state['bad'].append(node)
306 elif skip:
306 elif skip:
307 state['skip'].append(node)
307 state['skip'].append(node)
308
308
309 # save state
309 # save state
310 f = repo.opener("bisect.state", "w", atomictemp=True)
310 f = repo.opener("bisect.state", "w", atomictemp=True)
311 wlock = repo.wlock()
311 wlock = repo.wlock()
312 try:
312 try:
313 for kind in state:
313 for kind in state:
314 for node in state[kind]:
314 for node in state[kind]:
315 f.write("%s %s\n" % (kind, hex(node)))
315 f.write("%s %s\n" % (kind, hex(node)))
316 f.rename()
316 f.rename()
317 finally:
317 finally:
318 del wlock
318 del wlock
319
319
320 if not state['good'] or not state['bad']:
320 if not state['good'] or not state['bad']:
321 return
321 return
322
322
323 # actually bisect
323 # actually bisect
324 node, changesets, good = hbisect.bisect(repo.changelog, state)
324 node, changesets, good = hbisect.bisect(repo.changelog, state)
325 if changesets == 0:
325 if changesets == 0:
326 ui.write(_("The first %s revision is:\n") % (good and "good" or "bad"))
326 ui.write(_("The first %s revision is:\n") % (good and "good" or "bad"))
327 displayer = cmdutil.show_changeset(ui, repo, {})
327 displayer = cmdutil.show_changeset(ui, repo, {})
328 displayer.show(changenode=node)
328 displayer.show(changenode=node)
329 elif node is not None:
329 elif node is not None:
330 # compute the approximate number of remaining tests
330 # compute the approximate number of remaining tests
331 tests, size = 0, 2
331 tests, size = 0, 2
332 while size <= changesets:
332 while size <= changesets:
333 tests, size = tests + 1, size * 2
333 tests, size = tests + 1, size * 2
334 rev = repo.changelog.rev(node)
334 rev = repo.changelog.rev(node)
335 ui.write(_("Testing changeset %s:%s "
335 ui.write(_("Testing changeset %s:%s "
336 "(%s changesets remaining, ~%s tests)\n")
336 "(%s changesets remaining, ~%s tests)\n")
337 % (rev, short(node), changesets, tests))
337 % (rev, short(node), changesets, tests))
338 if not noupdate:
338 if not noupdate:
339 cmdutil.bail_if_changed(repo)
339 cmdutil.bail_if_changed(repo)
340 return hg.clean(repo, node)
340 return hg.clean(repo, node)
341
341
342 def branch(ui, repo, label=None, **opts):
342 def branch(ui, repo, label=None, **opts):
343 """set or show the current branch name
343 """set or show the current branch name
344
344
345 With no argument, show the current branch name. With one argument,
345 With no argument, show the current branch name. With one argument,
346 set the working directory branch name (the branch does not exist in
346 set the working directory branch name (the branch does not exist in
347 the repository until the next commit).
347 the repository until the next commit).
348
348
349 Unless --force is specified, branch will not let you set a
349 Unless --force is specified, branch will not let you set a
350 branch name that shadows an existing branch.
350 branch name that shadows an existing branch.
351
351
352 Use the command 'hg update' to switch to an existing branch.
352 Use the command 'hg update' to switch to an existing branch.
353 """
353 """
354
354
355 if label:
355 if label:
356 if not opts.get('force') and label in repo.branchtags():
356 if not opts.get('force') and label in repo.branchtags():
357 if label not in [p.branch() for p in repo.workingctx().parents()]:
357 if label not in [p.branch() for p in repo.workingctx().parents()]:
358 raise util.Abort(_('a branch of the same name already exists'
358 raise util.Abort(_('a branch of the same name already exists'
359 ' (use --force to override)'))
359 ' (use --force to override)'))
360 repo.dirstate.setbranch(util.fromlocal(label))
360 repo.dirstate.setbranch(util.fromlocal(label))
361 ui.status(_('marked working directory as branch %s\n') % label)
361 ui.status(_('marked working directory as branch %s\n') % label)
362 else:
362 else:
363 ui.write("%s\n" % util.tolocal(repo.dirstate.branch()))
363 ui.write("%s\n" % util.tolocal(repo.dirstate.branch()))
364
364
365 def branches(ui, repo, active=False):
365 def branches(ui, repo, active=False):
366 """list repository named branches
366 """list repository named branches
367
367
368 List the repository's named branches, indicating which ones are
368 List the repository's named branches, indicating which ones are
369 inactive. If active is specified, only show active branches.
369 inactive. If active is specified, only show active branches.
370
370
371 A branch is considered active if it contains unmerged heads.
371 A branch is considered active if it contains unmerged heads.
372
372
373 Use the command 'hg update' to switch to an existing branch.
373 Use the command 'hg update' to switch to an existing branch.
374 """
374 """
375 b = repo.branchtags()
375 b = repo.branchtags()
376 heads = dict.fromkeys(repo.heads(), 1)
376 heads = dict.fromkeys(repo.heads(), 1)
377 l = [((n in heads), repo.changelog.rev(n), n, t) for t, n in b.items()]
377 l = [((n in heads), repo.changelog.rev(n), n, t) for t, n in b.items()]
378 l.sort()
378 l.sort()
379 l.reverse()
379 l.reverse()
380 for ishead, r, n, t in l:
380 for ishead, r, n, t in l:
381 if active and not ishead:
381 if active and not ishead:
382 # If we're only displaying active branches, abort the loop on
382 # If we're only displaying active branches, abort the loop on
383 # encountering the first inactive head
383 # encountering the first inactive head
384 break
384 break
385 else:
385 else:
386 hexfunc = ui.debugflag and hex or short
386 hexfunc = ui.debugflag and hex or short
387 if ui.quiet:
387 if ui.quiet:
388 ui.write("%s\n" % t)
388 ui.write("%s\n" % t)
389 else:
389 else:
390 spaces = " " * (30 - util.locallen(t))
390 spaces = " " * (30 - util.locallen(t))
391 # The code only gets here if inactive branches are being
391 # The code only gets here if inactive branches are being
392 # displayed or the branch is active.
392 # displayed or the branch is active.
393 isinactive = ((not ishead) and " (inactive)") or ''
393 isinactive = ((not ishead) and " (inactive)") or ''
394 ui.write("%s%s %s:%s%s\n" % (t, spaces, r, hexfunc(n), isinactive))
394 ui.write("%s%s %s:%s%s\n" % (t, spaces, r, hexfunc(n), isinactive))
395
395
396 def bundle(ui, repo, fname, dest=None, **opts):
396 def bundle(ui, repo, fname, dest=None, **opts):
397 """create a changegroup file
397 """create a changegroup file
398
398
399 Generate a compressed changegroup file collecting changesets not
399 Generate a compressed changegroup file collecting changesets not
400 found in the other repository.
400 found in the other repository.
401
401
402 If no destination repository is specified the destination is
402 If no destination repository is specified the destination is
403 assumed to have all the nodes specified by one or more --base
403 assumed to have all the nodes specified by one or more --base
404 parameters. To create a bundle containing all changesets, use
404 parameters. To create a bundle containing all changesets, use
405 --all (or --base null).
405 --all (or --base null).
406
406
407 The bundle file can then be transferred using conventional means and
407 The bundle file can then be transferred using conventional means and
408 applied to another repository with the unbundle or pull command.
408 applied to another repository with the unbundle or pull command.
409 This is useful when direct push and pull are not available or when
409 This is useful when direct push and pull are not available or when
410 exporting an entire repository is undesirable.
410 exporting an entire repository is undesirable.
411
411
412 Applying bundles preserves all changeset contents including
412 Applying bundles preserves all changeset contents including
413 permissions, copy/rename information, and revision history.
413 permissions, copy/rename information, and revision history.
414 """
414 """
415 revs = opts.get('rev') or None
415 revs = opts.get('rev') or None
416 if revs:
416 if revs:
417 revs = [repo.lookup(rev) for rev in revs]
417 revs = [repo.lookup(rev) for rev in revs]
418 if opts.get('all'):
418 if opts.get('all'):
419 base = ['null']
419 base = ['null']
420 else:
420 else:
421 base = opts.get('base')
421 base = opts.get('base')
422 if base:
422 if base:
423 if dest:
423 if dest:
424 raise util.Abort(_("--base is incompatible with specifiying "
424 raise util.Abort(_("--base is incompatible with specifiying "
425 "a destination"))
425 "a destination"))
426 base = [repo.lookup(rev) for rev in base]
426 base = [repo.lookup(rev) for rev in base]
427 # create the right base
427 # create the right base
428 # XXX: nodesbetween / changegroup* should be "fixed" instead
428 # XXX: nodesbetween / changegroup* should be "fixed" instead
429 o = []
429 o = []
430 has = {nullid: None}
430 has = {nullid: None}
431 for n in base:
431 for n in base:
432 has.update(repo.changelog.reachable(n))
432 has.update(repo.changelog.reachable(n))
433 if revs:
433 if revs:
434 visit = list(revs)
434 visit = list(revs)
435 else:
435 else:
436 visit = repo.changelog.heads()
436 visit = repo.changelog.heads()
437 seen = {}
437 seen = {}
438 while visit:
438 while visit:
439 n = visit.pop(0)
439 n = visit.pop(0)
440 parents = [p for p in repo.changelog.parents(n) if p not in has]
440 parents = [p for p in repo.changelog.parents(n) if p not in has]
441 if len(parents) == 0:
441 if len(parents) == 0:
442 o.insert(0, n)
442 o.insert(0, n)
443 else:
443 else:
444 for p in parents:
444 for p in parents:
445 if p not in seen:
445 if p not in seen:
446 seen[p] = 1
446 seen[p] = 1
447 visit.append(p)
447 visit.append(p)
448 else:
448 else:
449 cmdutil.setremoteconfig(ui, opts)
449 cmdutil.setremoteconfig(ui, opts)
450 dest, revs, checkout = hg.parseurl(
450 dest, revs, checkout = hg.parseurl(
451 ui.expandpath(dest or 'default-push', dest or 'default'), revs)
451 ui.expandpath(dest or 'default-push', dest or 'default'), revs)
452 other = hg.repository(ui, dest)
452 other = hg.repository(ui, dest)
453 o = repo.findoutgoing(other, force=opts['force'])
453 o = repo.findoutgoing(other, force=opts['force'])
454
454
455 if revs:
455 if revs:
456 cg = repo.changegroupsubset(o, revs, 'bundle')
456 cg = repo.changegroupsubset(o, revs, 'bundle')
457 else:
457 else:
458 cg = repo.changegroup(o, 'bundle')
458 cg = repo.changegroup(o, 'bundle')
459 changegroup.writebundle(cg, fname, "HG10BZ")
459 changegroup.writebundle(cg, fname, "HG10BZ")
460
460
461 def cat(ui, repo, file1, *pats, **opts):
461 def cat(ui, repo, file1, *pats, **opts):
462 """output the current or given revision of files
462 """output the current or given revision of files
463
463
464 Print the specified files as they were at the given revision.
464 Print the specified files as they were at the given revision.
465 If no revision is given, the parent of the working directory is used,
465 If no revision is given, the parent of the working directory is used,
466 or tip if no revision is checked out.
466 or tip if no revision is checked out.
467
467
468 Output may be to a file, in which case the name of the file is
468 Output may be to a file, in which case the name of the file is
469 given using a format string. The formatting rules are the same as
469 given using a format string. The formatting rules are the same as
470 for the export command, with the following additions:
470 for the export command, with the following additions:
471
471
472 %s basename of file being printed
472 %s basename of file being printed
473 %d dirname of file being printed, or '.' if in repo root
473 %d dirname of file being printed, or '.' if in repo root
474 %p root-relative path name of file being printed
474 %p root-relative path name of file being printed
475 """
475 """
476 ctx = repo.changectx(opts['rev'])
476 ctx = repo.changectx(opts['rev'])
477 err = 1
477 err = 1
478 for src, abs, rel, exact in cmdutil.walk(repo, (file1,) + pats, opts,
478 for src, abs, rel, exact in cmdutil.walk(repo, (file1,) + pats, opts,
479 ctx.node()):
479 ctx.node()):
480 fp = cmdutil.make_file(repo, opts['output'], ctx.node(), pathname=abs)
480 fp = cmdutil.make_file(repo, opts['output'], ctx.node(), pathname=abs)
481 data = ctx.filectx(abs).data()
481 data = ctx.filectx(abs).data()
482 if opts.get('decode'):
482 if opts.get('decode'):
483 data = repo.wwritedata(abs, data)
483 data = repo.wwritedata(abs, data)
484 fp.write(data)
484 fp.write(data)
485 err = 0
485 err = 0
486 return err
486 return err
487
487
488 def clone(ui, source, dest=None, **opts):
488 def clone(ui, source, dest=None, **opts):
489 """make a copy of an existing repository
489 """make a copy of an existing repository
490
490
491 Create a copy of an existing repository in a new directory.
491 Create a copy of an existing repository in a new directory.
492
492
493 If no destination directory name is specified, it defaults to the
493 If no destination directory name is specified, it defaults to the
494 basename of the source.
494 basename of the source.
495
495
496 The location of the source is added to the new repository's
496 The location of the source is added to the new repository's
497 .hg/hgrc file, as the default to be used for future pulls.
497 .hg/hgrc file, as the default to be used for future pulls.
498
498
499 For efficiency, hardlinks are used for cloning whenever the source
499 For efficiency, hardlinks are used for cloning whenever the source
500 and destination are on the same filesystem (note this applies only
500 and destination are on the same filesystem (note this applies only
501 to the repository data, not to the checked out files). Some
501 to the repository data, not to the checked out files). Some
502 filesystems, such as AFS, implement hardlinking incorrectly, but
502 filesystems, such as AFS, implement hardlinking incorrectly, but
503 do not report errors. In these cases, use the --pull option to
503 do not report errors. In these cases, use the --pull option to
504 avoid hardlinking.
504 avoid hardlinking.
505
505
506 You can safely clone repositories and checked out files using full
506 You can safely clone repositories and checked out files using full
507 hardlinks with
507 hardlinks with
508
508
509 $ cp -al REPO REPOCLONE
509 $ cp -al REPO REPOCLONE
510
510
511 which is the fastest way to clone. However, the operation is not
511 which is the fastest way to clone. However, the operation is not
512 atomic (making sure REPO is not modified during the operation is
512 atomic (making sure REPO is not modified during the operation is
513 up to you) and you have to make sure your editor breaks hardlinks
513 up to you) and you have to make sure your editor breaks hardlinks
514 (Emacs and most Linux Kernel tools do so).
514 (Emacs and most Linux Kernel tools do so).
515
515
516 If you use the -r option to clone up to a specific revision, no
516 If you use the -r option to clone up to a specific revision, no
517 subsequent revisions will be present in the cloned repository.
517 subsequent revisions will be present in the cloned repository.
518 This option implies --pull, even on local repositories.
518 This option implies --pull, even on local repositories.
519
519
520 See pull for valid source format details.
520 See pull for valid source format details.
521
521
522 It is possible to specify an ssh:// URL as the destination, but no
522 It is possible to specify an ssh:// URL as the destination, but no
523 .hg/hgrc and working directory will be created on the remote side.
523 .hg/hgrc and working directory will be created on the remote side.
524 Look at the help text for the pull command for important details
524 Look at the help text for the pull command for important details
525 about ssh:// URLs.
525 about ssh:// URLs.
526 """
526 """
527 cmdutil.setremoteconfig(ui, opts)
527 cmdutil.setremoteconfig(ui, opts)
528 hg.clone(ui, source, dest,
528 hg.clone(ui, source, dest,
529 pull=opts['pull'],
529 pull=opts['pull'],
530 stream=opts['uncompressed'],
530 stream=opts['uncompressed'],
531 rev=opts['rev'],
531 rev=opts['rev'],
532 update=not opts['noupdate'])
532 update=not opts['noupdate'])
533
533
534 def commit(ui, repo, *pats, **opts):
534 def commit(ui, repo, *pats, **opts):
535 """commit the specified files or all outstanding changes
535 """commit the specified files or all outstanding changes
536
536
537 Commit changes to the given files into the repository.
537 Commit changes to the given files into the repository.
538
538
539 If a list of files is omitted, all changes reported by "hg status"
539 If a list of files is omitted, all changes reported by "hg status"
540 will be committed.
540 will be committed.
541
541
542 If no commit message is specified, the configured editor is started to
542 If no commit message is specified, the configured editor is started to
543 enter a message.
543 enter a message.
544
544
545 See 'hg help dates' for a list of formats valid for -d/--date.
545 See 'hg help dates' for a list of formats valid for -d/--date.
546 """
546 """
547 def commitfunc(ui, repo, files, message, match, opts):
547 def commitfunc(ui, repo, files, message, match, opts):
548 return repo.commit(files, message, opts['user'], opts['date'], match,
548 return repo.commit(files, message, opts['user'], opts['date'], match,
549 force_editor=opts.get('force_editor'))
549 force_editor=opts.get('force_editor'))
550
550
551 heads = repo.changelog.heads()
551 node = cmdutil.commit(ui, repo, commitfunc, pats, opts)
552 cmdutil.commit(ui, repo, commitfunc, pats, opts)
552 if not node:
553 if len(repo.changelog.heads()) > len(heads):
553 return
554 cl = repo.changelog
555 rev = cl.rev(node)
556 parents = cl.parentrevs(rev)
557 if rev - 1 in parents:
558 # one of the parents was the old tip
559 return
560 if (parents == (nullrev, nullrev) or
561 len(cl.heads(cl.node(parents[0]))) > 1 and
562 (parents[1] == nullrev or len(cl.heads(cl.node(parents[1]))) > 1)):
554 ui.status(_('created new head\n'))
563 ui.status(_('created new head\n'))
555
564
556 def copy(ui, repo, *pats, **opts):
565 def copy(ui, repo, *pats, **opts):
557 """mark files as copied for the next commit
566 """mark files as copied for the next commit
558
567
559 Mark dest as having copies of source files. If dest is a
568 Mark dest as having copies of source files. If dest is a
560 directory, copies are put in that directory. If dest is a file,
569 directory, copies are put in that directory. If dest is a file,
561 there can only be one source.
570 there can only be one source.
562
571
563 By default, this command copies the contents of files as they
572 By default, this command copies the contents of files as they
564 stand in the working directory. If invoked with --after, the
573 stand in the working directory. If invoked with --after, the
565 operation is recorded, but no copying is performed.
574 operation is recorded, but no copying is performed.
566
575
567 This command takes effect in the next commit. To undo a copy
576 This command takes effect in the next commit. To undo a copy
568 before that, see hg revert.
577 before that, see hg revert.
569 """
578 """
570 wlock = repo.wlock(False)
579 wlock = repo.wlock(False)
571 try:
580 try:
572 return cmdutil.copy(ui, repo, pats, opts)
581 return cmdutil.copy(ui, repo, pats, opts)
573 finally:
582 finally:
574 del wlock
583 del wlock
575
584
576 def debugancestor(ui, repo, *args):
585 def debugancestor(ui, repo, *args):
577 """find the ancestor revision of two revisions in a given index"""
586 """find the ancestor revision of two revisions in a given index"""
578 if len(args) == 3:
587 if len(args) == 3:
579 index, rev1, rev2 = args
588 index, rev1, rev2 = args
580 r = revlog.revlog(util.opener(os.getcwd(), audit=False), index)
589 r = revlog.revlog(util.opener(os.getcwd(), audit=False), index)
581 lookup = r.lookup
590 lookup = r.lookup
582 elif len(args) == 2:
591 elif len(args) == 2:
583 if not repo:
592 if not repo:
584 raise util.Abort(_("There is no Mercurial repository here "
593 raise util.Abort(_("There is no Mercurial repository here "
585 "(.hg not found)"))
594 "(.hg not found)"))
586 rev1, rev2 = args
595 rev1, rev2 = args
587 r = repo.changelog
596 r = repo.changelog
588 lookup = repo.lookup
597 lookup = repo.lookup
589 else:
598 else:
590 raise util.Abort(_('either two or three arguments required'))
599 raise util.Abort(_('either two or three arguments required'))
591 a = r.ancestor(lookup(rev1), lookup(rev2))
600 a = r.ancestor(lookup(rev1), lookup(rev2))
592 ui.write("%d:%s\n" % (r.rev(a), hex(a)))
601 ui.write("%d:%s\n" % (r.rev(a), hex(a)))
593
602
594 def debugcomplete(ui, cmd='', **opts):
603 def debugcomplete(ui, cmd='', **opts):
595 """returns the completion list associated with the given command"""
604 """returns the completion list associated with the given command"""
596
605
597 if opts['options']:
606 if opts['options']:
598 options = []
607 options = []
599 otables = [globalopts]
608 otables = [globalopts]
600 if cmd:
609 if cmd:
601 aliases, entry = cmdutil.findcmd(ui, cmd, table)
610 aliases, entry = cmdutil.findcmd(ui, cmd, table)
602 otables.append(entry[1])
611 otables.append(entry[1])
603 for t in otables:
612 for t in otables:
604 for o in t:
613 for o in t:
605 if o[0]:
614 if o[0]:
606 options.append('-%s' % o[0])
615 options.append('-%s' % o[0])
607 options.append('--%s' % o[1])
616 options.append('--%s' % o[1])
608 ui.write("%s\n" % "\n".join(options))
617 ui.write("%s\n" % "\n".join(options))
609 return
618 return
610
619
611 clist = cmdutil.findpossible(ui, cmd, table).keys()
620 clist = cmdutil.findpossible(ui, cmd, table).keys()
612 clist.sort()
621 clist.sort()
613 ui.write("%s\n" % "\n".join(clist))
622 ui.write("%s\n" % "\n".join(clist))
614
623
615 def debugfsinfo(ui, path = "."):
624 def debugfsinfo(ui, path = "."):
616 file('.debugfsinfo', 'w').write('')
625 file('.debugfsinfo', 'w').write('')
617 ui.write('exec: %s\n' % (util.checkexec(path) and 'yes' or 'no'))
626 ui.write('exec: %s\n' % (util.checkexec(path) and 'yes' or 'no'))
618 ui.write('symlink: %s\n' % (util.checklink(path) and 'yes' or 'no'))
627 ui.write('symlink: %s\n' % (util.checklink(path) and 'yes' or 'no'))
619 ui.write('case-sensitive: %s\n' % (util.checkfolding('.debugfsinfo')
628 ui.write('case-sensitive: %s\n' % (util.checkfolding('.debugfsinfo')
620 and 'yes' or 'no'))
629 and 'yes' or 'no'))
621 os.unlink('.debugfsinfo')
630 os.unlink('.debugfsinfo')
622
631
623 def debugrebuildstate(ui, repo, rev=""):
632 def debugrebuildstate(ui, repo, rev=""):
624 """rebuild the dirstate as it would look like for the given revision"""
633 """rebuild the dirstate as it would look like for the given revision"""
625 if rev == "":
634 if rev == "":
626 rev = repo.changelog.tip()
635 rev = repo.changelog.tip()
627 ctx = repo.changectx(rev)
636 ctx = repo.changectx(rev)
628 files = ctx.manifest()
637 files = ctx.manifest()
629 wlock = repo.wlock()
638 wlock = repo.wlock()
630 try:
639 try:
631 repo.dirstate.rebuild(rev, files)
640 repo.dirstate.rebuild(rev, files)
632 finally:
641 finally:
633 del wlock
642 del wlock
634
643
635 def debugcheckstate(ui, repo):
644 def debugcheckstate(ui, repo):
636 """validate the correctness of the current dirstate"""
645 """validate the correctness of the current dirstate"""
637 parent1, parent2 = repo.dirstate.parents()
646 parent1, parent2 = repo.dirstate.parents()
638 m1 = repo.changectx(parent1).manifest()
647 m1 = repo.changectx(parent1).manifest()
639 m2 = repo.changectx(parent2).manifest()
648 m2 = repo.changectx(parent2).manifest()
640 errors = 0
649 errors = 0
641 for f in repo.dirstate:
650 for f in repo.dirstate:
642 state = repo.dirstate[f]
651 state = repo.dirstate[f]
643 if state in "nr" and f not in m1:
652 if state in "nr" and f not in m1:
644 ui.warn(_("%s in state %s, but not in manifest1\n") % (f, state))
653 ui.warn(_("%s in state %s, but not in manifest1\n") % (f, state))
645 errors += 1
654 errors += 1
646 if state in "a" and f in m1:
655 if state in "a" and f in m1:
647 ui.warn(_("%s in state %s, but also in manifest1\n") % (f, state))
656 ui.warn(_("%s in state %s, but also in manifest1\n") % (f, state))
648 errors += 1
657 errors += 1
649 if state in "m" and f not in m1 and f not in m2:
658 if state in "m" and f not in m1 and f not in m2:
650 ui.warn(_("%s in state %s, but not in either manifest\n") %
659 ui.warn(_("%s in state %s, but not in either manifest\n") %
651 (f, state))
660 (f, state))
652 errors += 1
661 errors += 1
653 for f in m1:
662 for f in m1:
654 state = repo.dirstate[f]
663 state = repo.dirstate[f]
655 if state not in "nrm":
664 if state not in "nrm":
656 ui.warn(_("%s in manifest1, but listed as state %s") % (f, state))
665 ui.warn(_("%s in manifest1, but listed as state %s") % (f, state))
657 errors += 1
666 errors += 1
658 if errors:
667 if errors:
659 error = _(".hg/dirstate inconsistent with current parent's manifest")
668 error = _(".hg/dirstate inconsistent with current parent's manifest")
660 raise util.Abort(error)
669 raise util.Abort(error)
661
670
662 def showconfig(ui, repo, *values, **opts):
671 def showconfig(ui, repo, *values, **opts):
663 """show combined config settings from all hgrc files
672 """show combined config settings from all hgrc files
664
673
665 With no args, print names and values of all config items.
674 With no args, print names and values of all config items.
666
675
667 With one arg of the form section.name, print just the value of
676 With one arg of the form section.name, print just the value of
668 that config item.
677 that config item.
669
678
670 With multiple args, print names and values of all config items
679 With multiple args, print names and values of all config items
671 with matching section names."""
680 with matching section names."""
672
681
673 untrusted = bool(opts.get('untrusted'))
682 untrusted = bool(opts.get('untrusted'))
674 if values:
683 if values:
675 if len([v for v in values if '.' in v]) > 1:
684 if len([v for v in values if '.' in v]) > 1:
676 raise util.Abort(_('only one config item permitted'))
685 raise util.Abort(_('only one config item permitted'))
677 for section, name, value in ui.walkconfig(untrusted=untrusted):
686 for section, name, value in ui.walkconfig(untrusted=untrusted):
678 sectname = section + '.' + name
687 sectname = section + '.' + name
679 if values:
688 if values:
680 for v in values:
689 for v in values:
681 if v == section:
690 if v == section:
682 ui.write('%s=%s\n' % (sectname, value))
691 ui.write('%s=%s\n' % (sectname, value))
683 elif v == sectname:
692 elif v == sectname:
684 ui.write(value, '\n')
693 ui.write(value, '\n')
685 else:
694 else:
686 ui.write('%s=%s\n' % (sectname, value))
695 ui.write('%s=%s\n' % (sectname, value))
687
696
688 def debugsetparents(ui, repo, rev1, rev2=None):
697 def debugsetparents(ui, repo, rev1, rev2=None):
689 """manually set the parents of the current working directory
698 """manually set the parents of the current working directory
690
699
691 This is useful for writing repository conversion tools, but should
700 This is useful for writing repository conversion tools, but should
692 be used with care.
701 be used with care.
693 """
702 """
694
703
695 if not rev2:
704 if not rev2:
696 rev2 = hex(nullid)
705 rev2 = hex(nullid)
697
706
698 wlock = repo.wlock()
707 wlock = repo.wlock()
699 try:
708 try:
700 repo.dirstate.setparents(repo.lookup(rev1), repo.lookup(rev2))
709 repo.dirstate.setparents(repo.lookup(rev1), repo.lookup(rev2))
701 finally:
710 finally:
702 del wlock
711 del wlock
703
712
704 def debugstate(ui, repo, nodates=None):
713 def debugstate(ui, repo, nodates=None):
705 """show the contents of the current dirstate"""
714 """show the contents of the current dirstate"""
706 k = repo.dirstate._map.items()
715 k = repo.dirstate._map.items()
707 k.sort()
716 k.sort()
708 timestr = ""
717 timestr = ""
709 showdate = not nodates
718 showdate = not nodates
710 for file_, ent in k:
719 for file_, ent in k:
711 if showdate:
720 if showdate:
712 if ent[3] == -1:
721 if ent[3] == -1:
713 # Pad or slice to locale representation
722 # Pad or slice to locale representation
714 locale_len = len(time.strftime("%Y-%m-%d %H:%M:%S ", time.localtime(0)))
723 locale_len = len(time.strftime("%Y-%m-%d %H:%M:%S ", time.localtime(0)))
715 timestr = 'unset'
724 timestr = 'unset'
716 timestr = timestr[:locale_len] + ' '*(locale_len - len(timestr))
725 timestr = timestr[:locale_len] + ' '*(locale_len - len(timestr))
717 else:
726 else:
718 timestr = time.strftime("%Y-%m-%d %H:%M:%S ", time.localtime(ent[3]))
727 timestr = time.strftime("%Y-%m-%d %H:%M:%S ", time.localtime(ent[3]))
719 if ent[1] & 020000:
728 if ent[1] & 020000:
720 mode = 'lnk'
729 mode = 'lnk'
721 else:
730 else:
722 mode = '%3o' % (ent[1] & 0777)
731 mode = '%3o' % (ent[1] & 0777)
723 ui.write("%c %s %10d %s%s\n" % (ent[0], mode, ent[2], timestr, file_))
732 ui.write("%c %s %10d %s%s\n" % (ent[0], mode, ent[2], timestr, file_))
724 for f in repo.dirstate.copies():
733 for f in repo.dirstate.copies():
725 ui.write(_("copy: %s -> %s\n") % (repo.dirstate.copied(f), f))
734 ui.write(_("copy: %s -> %s\n") % (repo.dirstate.copied(f), f))
726
735
727 def debugdata(ui, file_, rev):
736 def debugdata(ui, file_, rev):
728 """dump the contents of a data file revision"""
737 """dump the contents of a data file revision"""
729 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_[:-2] + ".i")
738 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_[:-2] + ".i")
730 try:
739 try:
731 ui.write(r.revision(r.lookup(rev)))
740 ui.write(r.revision(r.lookup(rev)))
732 except KeyError:
741 except KeyError:
733 raise util.Abort(_('invalid revision identifier %s') % rev)
742 raise util.Abort(_('invalid revision identifier %s') % rev)
734
743
735 def debugdate(ui, date, range=None, **opts):
744 def debugdate(ui, date, range=None, **opts):
736 """parse and display a date"""
745 """parse and display a date"""
737 if opts["extended"]:
746 if opts["extended"]:
738 d = util.parsedate(date, util.extendeddateformats)
747 d = util.parsedate(date, util.extendeddateformats)
739 else:
748 else:
740 d = util.parsedate(date)
749 d = util.parsedate(date)
741 ui.write("internal: %s %s\n" % d)
750 ui.write("internal: %s %s\n" % d)
742 ui.write("standard: %s\n" % util.datestr(d))
751 ui.write("standard: %s\n" % util.datestr(d))
743 if range:
752 if range:
744 m = util.matchdate(range)
753 m = util.matchdate(range)
745 ui.write("match: %s\n" % m(d[0]))
754 ui.write("match: %s\n" % m(d[0]))
746
755
747 def debugindex(ui, file_):
756 def debugindex(ui, file_):
748 """dump the contents of an index file"""
757 """dump the contents of an index file"""
749 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_)
758 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_)
750 ui.write(" rev offset length base linkrev" +
759 ui.write(" rev offset length base linkrev" +
751 " nodeid p1 p2\n")
760 " nodeid p1 p2\n")
752 for i in xrange(r.count()):
761 for i in xrange(r.count()):
753 node = r.node(i)
762 node = r.node(i)
754 try:
763 try:
755 pp = r.parents(node)
764 pp = r.parents(node)
756 except:
765 except:
757 pp = [nullid, nullid]
766 pp = [nullid, nullid]
758 ui.write("% 6d % 9d % 7d % 6d % 7d %s %s %s\n" % (
767 ui.write("% 6d % 9d % 7d % 6d % 7d %s %s %s\n" % (
759 i, r.start(i), r.length(i), r.base(i), r.linkrev(node),
768 i, r.start(i), r.length(i), r.base(i), r.linkrev(node),
760 short(node), short(pp[0]), short(pp[1])))
769 short(node), short(pp[0]), short(pp[1])))
761
770
762 def debugindexdot(ui, file_):
771 def debugindexdot(ui, file_):
763 """dump an index DAG as a .dot file"""
772 """dump an index DAG as a .dot file"""
764 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_)
773 r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_)
765 ui.write("digraph G {\n")
774 ui.write("digraph G {\n")
766 for i in xrange(r.count()):
775 for i in xrange(r.count()):
767 node = r.node(i)
776 node = r.node(i)
768 pp = r.parents(node)
777 pp = r.parents(node)
769 ui.write("\t%d -> %d\n" % (r.rev(pp[0]), i))
778 ui.write("\t%d -> %d\n" % (r.rev(pp[0]), i))
770 if pp[1] != nullid:
779 if pp[1] != nullid:
771 ui.write("\t%d -> %d\n" % (r.rev(pp[1]), i))
780 ui.write("\t%d -> %d\n" % (r.rev(pp[1]), i))
772 ui.write("}\n")
781 ui.write("}\n")
773
782
774 def debuginstall(ui):
783 def debuginstall(ui):
775 '''test Mercurial installation'''
784 '''test Mercurial installation'''
776
785
777 def writetemp(contents):
786 def writetemp(contents):
778 (fd, name) = tempfile.mkstemp(prefix="hg-debuginstall-")
787 (fd, name) = tempfile.mkstemp(prefix="hg-debuginstall-")
779 f = os.fdopen(fd, "wb")
788 f = os.fdopen(fd, "wb")
780 f.write(contents)
789 f.write(contents)
781 f.close()
790 f.close()
782 return name
791 return name
783
792
784 problems = 0
793 problems = 0
785
794
786 # encoding
795 # encoding
787 ui.status(_("Checking encoding (%s)...\n") % util._encoding)
796 ui.status(_("Checking encoding (%s)...\n") % util._encoding)
788 try:
797 try:
789 util.fromlocal("test")
798 util.fromlocal("test")
790 except util.Abort, inst:
799 except util.Abort, inst:
791 ui.write(" %s\n" % inst)
800 ui.write(" %s\n" % inst)
792 ui.write(_(" (check that your locale is properly set)\n"))
801 ui.write(_(" (check that your locale is properly set)\n"))
793 problems += 1
802 problems += 1
794
803
795 # compiled modules
804 # compiled modules
796 ui.status(_("Checking extensions...\n"))
805 ui.status(_("Checking extensions...\n"))
797 try:
806 try:
798 import bdiff, mpatch, base85
807 import bdiff, mpatch, base85
799 except Exception, inst:
808 except Exception, inst:
800 ui.write(" %s\n" % inst)
809 ui.write(" %s\n" % inst)
801 ui.write(_(" One or more extensions could not be found"))
810 ui.write(_(" One or more extensions could not be found"))
802 ui.write(_(" (check that you compiled the extensions)\n"))
811 ui.write(_(" (check that you compiled the extensions)\n"))
803 problems += 1
812 problems += 1
804
813
805 # templates
814 # templates
806 ui.status(_("Checking templates...\n"))
815 ui.status(_("Checking templates...\n"))
807 try:
816 try:
808 import templater
817 import templater
809 t = templater.templater(templater.templatepath("map-cmdline.default"))
818 t = templater.templater(templater.templatepath("map-cmdline.default"))
810 except Exception, inst:
819 except Exception, inst:
811 ui.write(" %s\n" % inst)
820 ui.write(" %s\n" % inst)
812 ui.write(_(" (templates seem to have been installed incorrectly)\n"))
821 ui.write(_(" (templates seem to have been installed incorrectly)\n"))
813 problems += 1
822 problems += 1
814
823
815 # patch
824 # patch
816 ui.status(_("Checking patch...\n"))
825 ui.status(_("Checking patch...\n"))
817 patchproblems = 0
826 patchproblems = 0
818 a = "1\n2\n3\n4\n"
827 a = "1\n2\n3\n4\n"
819 b = "1\n2\n3\ninsert\n4\n"
828 b = "1\n2\n3\ninsert\n4\n"
820 fa = writetemp(a)
829 fa = writetemp(a)
821 d = mdiff.unidiff(a, None, b, None, os.path.basename(fa),
830 d = mdiff.unidiff(a, None, b, None, os.path.basename(fa),
822 os.path.basename(fa))
831 os.path.basename(fa))
823 fd = writetemp(d)
832 fd = writetemp(d)
824
833
825 files = {}
834 files = {}
826 try:
835 try:
827 patch.patch(fd, ui, cwd=os.path.dirname(fa), files=files)
836 patch.patch(fd, ui, cwd=os.path.dirname(fa), files=files)
828 except util.Abort, e:
837 except util.Abort, e:
829 ui.write(_(" patch call failed:\n"))
838 ui.write(_(" patch call failed:\n"))
830 ui.write(" " + str(e) + "\n")
839 ui.write(" " + str(e) + "\n")
831 patchproblems += 1
840 patchproblems += 1
832 else:
841 else:
833 if list(files) != [os.path.basename(fa)]:
842 if list(files) != [os.path.basename(fa)]:
834 ui.write(_(" unexpected patch output!\n"))
843 ui.write(_(" unexpected patch output!\n"))
835 patchproblems += 1
844 patchproblems += 1
836 a = file(fa).read()
845 a = file(fa).read()
837 if a != b:
846 if a != b:
838 ui.write(_(" patch test failed!\n"))
847 ui.write(_(" patch test failed!\n"))
839 patchproblems += 1
848 patchproblems += 1
840
849
841 if patchproblems:
850 if patchproblems:
842 if ui.config('ui', 'patch'):
851 if ui.config('ui', 'patch'):
843 ui.write(_(" (Current patch tool may be incompatible with patch,"
852 ui.write(_(" (Current patch tool may be incompatible with patch,"
844 " or misconfigured. Please check your .hgrc file)\n"))
853 " or misconfigured. Please check your .hgrc file)\n"))
845 else:
854 else:
846 ui.write(_(" Internal patcher failure, please report this error"
855 ui.write(_(" Internal patcher failure, please report this error"
847 " to http://www.selenic.com/mercurial/bts\n"))
856 " to http://www.selenic.com/mercurial/bts\n"))
848 problems += patchproblems
857 problems += patchproblems
849
858
850 os.unlink(fa)
859 os.unlink(fa)
851 os.unlink(fd)
860 os.unlink(fd)
852
861
853 # editor
862 # editor
854 ui.status(_("Checking commit editor...\n"))
863 ui.status(_("Checking commit editor...\n"))
855 editor = ui.geteditor()
864 editor = ui.geteditor()
856 cmdpath = util.find_exe(editor) or util.find_exe(editor.split()[0])
865 cmdpath = util.find_exe(editor) or util.find_exe(editor.split()[0])
857 if not cmdpath:
866 if not cmdpath:
858 if editor == 'vi':
867 if editor == 'vi':
859 ui.write(_(" No commit editor set and can't find vi in PATH\n"))
868 ui.write(_(" No commit editor set and can't find vi in PATH\n"))
860 ui.write(_(" (specify a commit editor in your .hgrc file)\n"))
869 ui.write(_(" (specify a commit editor in your .hgrc file)\n"))
861 else:
870 else:
862 ui.write(_(" Can't find editor '%s' in PATH\n") % editor)
871 ui.write(_(" Can't find editor '%s' in PATH\n") % editor)
863 ui.write(_(" (specify a commit editor in your .hgrc file)\n"))
872 ui.write(_(" (specify a commit editor in your .hgrc file)\n"))
864 problems += 1
873 problems += 1
865
874
866 # check username
875 # check username
867 ui.status(_("Checking username...\n"))
876 ui.status(_("Checking username...\n"))
868 user = os.environ.get("HGUSER")
877 user = os.environ.get("HGUSER")
869 if user is None:
878 if user is None:
870 user = ui.config("ui", "username")
879 user = ui.config("ui", "username")
871 if user is None:
880 if user is None:
872 user = os.environ.get("EMAIL")
881 user = os.environ.get("EMAIL")
873 if not user:
882 if not user:
874 ui.warn(" ")
883 ui.warn(" ")
875 ui.username()
884 ui.username()
876 ui.write(_(" (specify a username in your .hgrc file)\n"))
885 ui.write(_(" (specify a username in your .hgrc file)\n"))
877
886
878 if not problems:
887 if not problems:
879 ui.status(_("No problems detected\n"))
888 ui.status(_("No problems detected\n"))
880 else:
889 else:
881 ui.write(_("%s problems detected,"
890 ui.write(_("%s problems detected,"
882 " please check your install!\n") % problems)
891 " please check your install!\n") % problems)
883
892
884 return problems
893 return problems
885
894
886 def debugrename(ui, repo, file1, *pats, **opts):
895 def debugrename(ui, repo, file1, *pats, **opts):
887 """dump rename information"""
896 """dump rename information"""
888
897
889 ctx = repo.changectx(opts.get('rev', 'tip'))
898 ctx = repo.changectx(opts.get('rev', 'tip'))
890 for src, abs, rel, exact in cmdutil.walk(repo, (file1,) + pats, opts,
899 for src, abs, rel, exact in cmdutil.walk(repo, (file1,) + pats, opts,
891 ctx.node()):
900 ctx.node()):
892 fctx = ctx.filectx(abs)
901 fctx = ctx.filectx(abs)
893 m = fctx.filelog().renamed(fctx.filenode())
902 m = fctx.filelog().renamed(fctx.filenode())
894 if m:
903 if m:
895 ui.write(_("%s renamed from %s:%s\n") % (rel, m[0], hex(m[1])))
904 ui.write(_("%s renamed from %s:%s\n") % (rel, m[0], hex(m[1])))
896 else:
905 else:
897 ui.write(_("%s not renamed\n") % rel)
906 ui.write(_("%s not renamed\n") % rel)
898
907
899 def debugwalk(ui, repo, *pats, **opts):
908 def debugwalk(ui, repo, *pats, **opts):
900 """show how files match on given patterns"""
909 """show how files match on given patterns"""
901 items = list(cmdutil.walk(repo, pats, opts))
910 items = list(cmdutil.walk(repo, pats, opts))
902 if not items:
911 if not items:
903 return
912 return
904 fmt = '%%s %%-%ds %%-%ds %%s' % (
913 fmt = '%%s %%-%ds %%-%ds %%s' % (
905 max([len(abs) for (src, abs, rel, exact) in items]),
914 max([len(abs) for (src, abs, rel, exact) in items]),
906 max([len(rel) for (src, abs, rel, exact) in items]))
915 max([len(rel) for (src, abs, rel, exact) in items]))
907 for src, abs, rel, exact in items:
916 for src, abs, rel, exact in items:
908 line = fmt % (src, abs, rel, exact and 'exact' or '')
917 line = fmt % (src, abs, rel, exact and 'exact' or '')
909 ui.write("%s\n" % line.rstrip())
918 ui.write("%s\n" % line.rstrip())
910
919
911 def diff(ui, repo, *pats, **opts):
920 def diff(ui, repo, *pats, **opts):
912 """diff repository (or selected files)
921 """diff repository (or selected files)
913
922
914 Show differences between revisions for the specified files.
923 Show differences between revisions for the specified files.
915
924
916 Differences between files are shown using the unified diff format.
925 Differences between files are shown using the unified diff format.
917
926
918 NOTE: diff may generate unexpected results for merges, as it will
927 NOTE: diff may generate unexpected results for merges, as it will
919 default to comparing against the working directory's first parent
928 default to comparing against the working directory's first parent
920 changeset if no revisions are specified.
929 changeset if no revisions are specified.
921
930
922 When two revision arguments are given, then changes are shown
931 When two revision arguments are given, then changes are shown
923 between those revisions. If only one revision is specified then
932 between those revisions. If only one revision is specified then
924 that revision is compared to the working directory, and, when no
933 that revision is compared to the working directory, and, when no
925 revisions are specified, the working directory files are compared
934 revisions are specified, the working directory files are compared
926 to its parent.
935 to its parent.
927
936
928 Without the -a option, diff will avoid generating diffs of files
937 Without the -a option, diff will avoid generating diffs of files
929 it detects as binary. With -a, diff will generate a diff anyway,
938 it detects as binary. With -a, diff will generate a diff anyway,
930 probably with undesirable results.
939 probably with undesirable results.
931 """
940 """
932 node1, node2 = cmdutil.revpair(repo, opts['rev'])
941 node1, node2 = cmdutil.revpair(repo, opts['rev'])
933
942
934 fns, matchfn, anypats = cmdutil.matchpats(repo, pats, opts)
943 fns, matchfn, anypats = cmdutil.matchpats(repo, pats, opts)
935
944
936 patch.diff(repo, node1, node2, fns, match=matchfn,
945 patch.diff(repo, node1, node2, fns, match=matchfn,
937 opts=patch.diffopts(ui, opts))
946 opts=patch.diffopts(ui, opts))
938
947
939 def export(ui, repo, *changesets, **opts):
948 def export(ui, repo, *changesets, **opts):
940 """dump the header and diffs for one or more changesets
949 """dump the header and diffs for one or more changesets
941
950
942 Print the changeset header and diffs for one or more revisions.
951 Print the changeset header and diffs for one or more revisions.
943
952
944 The information shown in the changeset header is: author,
953 The information shown in the changeset header is: author,
945 changeset hash, parent(s) and commit comment.
954 changeset hash, parent(s) and commit comment.
946
955
947 NOTE: export may generate unexpected diff output for merge changesets,
956 NOTE: export may generate unexpected diff output for merge changesets,
948 as it will compare the merge changeset against its first parent only.
957 as it will compare the merge changeset against its first parent only.
949
958
950 Output may be to a file, in which case the name of the file is
959 Output may be to a file, in which case the name of the file is
951 given using a format string. The formatting rules are as follows:
960 given using a format string. The formatting rules are as follows:
952
961
953 %% literal "%" character
962 %% literal "%" character
954 %H changeset hash (40 bytes of hexadecimal)
963 %H changeset hash (40 bytes of hexadecimal)
955 %N number of patches being generated
964 %N number of patches being generated
956 %R changeset revision number
965 %R changeset revision number
957 %b basename of the exporting repository
966 %b basename of the exporting repository
958 %h short-form changeset hash (12 bytes of hexadecimal)
967 %h short-form changeset hash (12 bytes of hexadecimal)
959 %n zero-padded sequence number, starting at 1
968 %n zero-padded sequence number, starting at 1
960 %r zero-padded changeset revision number
969 %r zero-padded changeset revision number
961
970
962 Without the -a option, export will avoid generating diffs of files
971 Without the -a option, export will avoid generating diffs of files
963 it detects as binary. With -a, export will generate a diff anyway,
972 it detects as binary. With -a, export will generate a diff anyway,
964 probably with undesirable results.
973 probably with undesirable results.
965
974
966 With the --switch-parent option, the diff will be against the second
975 With the --switch-parent option, the diff will be against the second
967 parent. It can be useful to review a merge.
976 parent. It can be useful to review a merge.
968 """
977 """
969 if not changesets:
978 if not changesets:
970 raise util.Abort(_("export requires at least one changeset"))
979 raise util.Abort(_("export requires at least one changeset"))
971 revs = cmdutil.revrange(repo, changesets)
980 revs = cmdutil.revrange(repo, changesets)
972 if len(revs) > 1:
981 if len(revs) > 1:
973 ui.note(_('exporting patches:\n'))
982 ui.note(_('exporting patches:\n'))
974 else:
983 else:
975 ui.note(_('exporting patch:\n'))
984 ui.note(_('exporting patch:\n'))
976 patch.export(repo, revs, template=opts['output'],
985 patch.export(repo, revs, template=opts['output'],
977 switch_parent=opts['switch_parent'],
986 switch_parent=opts['switch_parent'],
978 opts=patch.diffopts(ui, opts))
987 opts=patch.diffopts(ui, opts))
979
988
980 def grep(ui, repo, pattern, *pats, **opts):
989 def grep(ui, repo, pattern, *pats, **opts):
981 """search for a pattern in specified files and revisions
990 """search for a pattern in specified files and revisions
982
991
983 Search revisions of files for a regular expression.
992 Search revisions of files for a regular expression.
984
993
985 This command behaves differently than Unix grep. It only accepts
994 This command behaves differently than Unix grep. It only accepts
986 Python/Perl regexps. It searches repository history, not the
995 Python/Perl regexps. It searches repository history, not the
987 working directory. It always prints the revision number in which
996 working directory. It always prints the revision number in which
988 a match appears.
997 a match appears.
989
998
990 By default, grep only prints output for the first revision of a
999 By default, grep only prints output for the first revision of a
991 file in which it finds a match. To get it to print every revision
1000 file in which it finds a match. To get it to print every revision
992 that contains a change in match status ("-" for a match that
1001 that contains a change in match status ("-" for a match that
993 becomes a non-match, or "+" for a non-match that becomes a match),
1002 becomes a non-match, or "+" for a non-match that becomes a match),
994 use the --all flag.
1003 use the --all flag.
995 """
1004 """
996 reflags = 0
1005 reflags = 0
997 if opts['ignore_case']:
1006 if opts['ignore_case']:
998 reflags |= re.I
1007 reflags |= re.I
999 try:
1008 try:
1000 regexp = re.compile(pattern, reflags)
1009 regexp = re.compile(pattern, reflags)
1001 except Exception, inst:
1010 except Exception, inst:
1002 ui.warn(_("grep: invalid match pattern: %s\n") % inst)
1011 ui.warn(_("grep: invalid match pattern: %s\n") % inst)
1003 return None
1012 return None
1004 sep, eol = ':', '\n'
1013 sep, eol = ':', '\n'
1005 if opts['print0']:
1014 if opts['print0']:
1006 sep = eol = '\0'
1015 sep = eol = '\0'
1007
1016
1008 fcache = {}
1017 fcache = {}
1009 def getfile(fn):
1018 def getfile(fn):
1010 if fn not in fcache:
1019 if fn not in fcache:
1011 fcache[fn] = repo.file(fn)
1020 fcache[fn] = repo.file(fn)
1012 return fcache[fn]
1021 return fcache[fn]
1013
1022
1014 def matchlines(body):
1023 def matchlines(body):
1015 begin = 0
1024 begin = 0
1016 linenum = 0
1025 linenum = 0
1017 while True:
1026 while True:
1018 match = regexp.search(body, begin)
1027 match = regexp.search(body, begin)
1019 if not match:
1028 if not match:
1020 break
1029 break
1021 mstart, mend = match.span()
1030 mstart, mend = match.span()
1022 linenum += body.count('\n', begin, mstart) + 1
1031 linenum += body.count('\n', begin, mstart) + 1
1023 lstart = body.rfind('\n', begin, mstart) + 1 or begin
1032 lstart = body.rfind('\n', begin, mstart) + 1 or begin
1024 lend = body.find('\n', mend)
1033 lend = body.find('\n', mend)
1025 yield linenum, mstart - lstart, mend - lstart, body[lstart:lend]
1034 yield linenum, mstart - lstart, mend - lstart, body[lstart:lend]
1026 begin = lend + 1
1035 begin = lend + 1
1027
1036
1028 class linestate(object):
1037 class linestate(object):
1029 def __init__(self, line, linenum, colstart, colend):
1038 def __init__(self, line, linenum, colstart, colend):
1030 self.line = line
1039 self.line = line
1031 self.linenum = linenum
1040 self.linenum = linenum
1032 self.colstart = colstart
1041 self.colstart = colstart
1033 self.colend = colend
1042 self.colend = colend
1034
1043
1035 def __eq__(self, other):
1044 def __eq__(self, other):
1036 return self.line == other.line
1045 return self.line == other.line
1037
1046
1038 matches = {}
1047 matches = {}
1039 copies = {}
1048 copies = {}
1040 def grepbody(fn, rev, body):
1049 def grepbody(fn, rev, body):
1041 matches[rev].setdefault(fn, [])
1050 matches[rev].setdefault(fn, [])
1042 m = matches[rev][fn]
1051 m = matches[rev][fn]
1043 for lnum, cstart, cend, line in matchlines(body):
1052 for lnum, cstart, cend, line in matchlines(body):
1044 s = linestate(line, lnum, cstart, cend)
1053 s = linestate(line, lnum, cstart, cend)
1045 m.append(s)
1054 m.append(s)
1046
1055
1047 def difflinestates(a, b):
1056 def difflinestates(a, b):
1048 sm = difflib.SequenceMatcher(None, a, b)
1057 sm = difflib.SequenceMatcher(None, a, b)
1049 for tag, alo, ahi, blo, bhi in sm.get_opcodes():
1058 for tag, alo, ahi, blo, bhi in sm.get_opcodes():
1050 if tag == 'insert':
1059 if tag == 'insert':
1051 for i in xrange(blo, bhi):
1060 for i in xrange(blo, bhi):
1052 yield ('+', b[i])
1061 yield ('+', b[i])
1053 elif tag == 'delete':
1062 elif tag == 'delete':
1054 for i in xrange(alo, ahi):
1063 for i in xrange(alo, ahi):
1055 yield ('-', a[i])
1064 yield ('-', a[i])
1056 elif tag == 'replace':
1065 elif tag == 'replace':
1057 for i in xrange(alo, ahi):
1066 for i in xrange(alo, ahi):
1058 yield ('-', a[i])
1067 yield ('-', a[i])
1059 for i in xrange(blo, bhi):
1068 for i in xrange(blo, bhi):
1060 yield ('+', b[i])
1069 yield ('+', b[i])
1061
1070
1062 prev = {}
1071 prev = {}
1063 def display(fn, rev, states, prevstates):
1072 def display(fn, rev, states, prevstates):
1064 datefunc = ui.quiet and util.shortdate or util.datestr
1073 datefunc = ui.quiet and util.shortdate or util.datestr
1065 found = False
1074 found = False
1066 filerevmatches = {}
1075 filerevmatches = {}
1067 r = prev.get(fn, -1)
1076 r = prev.get(fn, -1)
1068 if opts['all']:
1077 if opts['all']:
1069 iter = difflinestates(states, prevstates)
1078 iter = difflinestates(states, prevstates)
1070 else:
1079 else:
1071 iter = [('', l) for l in prevstates]
1080 iter = [('', l) for l in prevstates]
1072 for change, l in iter:
1081 for change, l in iter:
1073 cols = [fn, str(r)]
1082 cols = [fn, str(r)]
1074 if opts['line_number']:
1083 if opts['line_number']:
1075 cols.append(str(l.linenum))
1084 cols.append(str(l.linenum))
1076 if opts['all']:
1085 if opts['all']:
1077 cols.append(change)
1086 cols.append(change)
1078 if opts['user']:
1087 if opts['user']:
1079 cols.append(ui.shortuser(get(r)[1]))
1088 cols.append(ui.shortuser(get(r)[1]))
1080 if opts.get('date'):
1089 if opts.get('date'):
1081 cols.append(datefunc(get(r)[2]))
1090 cols.append(datefunc(get(r)[2]))
1082 if opts['files_with_matches']:
1091 if opts['files_with_matches']:
1083 c = (fn, r)
1092 c = (fn, r)
1084 if c in filerevmatches:
1093 if c in filerevmatches:
1085 continue
1094 continue
1086 filerevmatches[c] = 1
1095 filerevmatches[c] = 1
1087 else:
1096 else:
1088 cols.append(l.line)
1097 cols.append(l.line)
1089 ui.write(sep.join(cols), eol)
1098 ui.write(sep.join(cols), eol)
1090 found = True
1099 found = True
1091 return found
1100 return found
1092
1101
1093 fstate = {}
1102 fstate = {}
1094 skip = {}
1103 skip = {}
1095 get = util.cachefunc(lambda r: repo.changectx(r).changeset())
1104 get = util.cachefunc(lambda r: repo.changectx(r).changeset())
1096 changeiter, matchfn = cmdutil.walkchangerevs(ui, repo, pats, get, opts)
1105 changeiter, matchfn = cmdutil.walkchangerevs(ui, repo, pats, get, opts)
1097 found = False
1106 found = False
1098 follow = opts.get('follow')
1107 follow = opts.get('follow')
1099 for st, rev, fns in changeiter:
1108 for st, rev, fns in changeiter:
1100 if st == 'window':
1109 if st == 'window':
1101 matches.clear()
1110 matches.clear()
1102 elif st == 'add':
1111 elif st == 'add':
1103 ctx = repo.changectx(rev)
1112 ctx = repo.changectx(rev)
1104 matches[rev] = {}
1113 matches[rev] = {}
1105 for fn in fns:
1114 for fn in fns:
1106 if fn in skip:
1115 if fn in skip:
1107 continue
1116 continue
1108 try:
1117 try:
1109 grepbody(fn, rev, getfile(fn).read(ctx.filenode(fn)))
1118 grepbody(fn, rev, getfile(fn).read(ctx.filenode(fn)))
1110 fstate.setdefault(fn, [])
1119 fstate.setdefault(fn, [])
1111 if follow:
1120 if follow:
1112 copied = getfile(fn).renamed(ctx.filenode(fn))
1121 copied = getfile(fn).renamed(ctx.filenode(fn))
1113 if copied:
1122 if copied:
1114 copies.setdefault(rev, {})[fn] = copied[0]
1123 copies.setdefault(rev, {})[fn] = copied[0]
1115 except revlog.LookupError:
1124 except revlog.LookupError:
1116 pass
1125 pass
1117 elif st == 'iter':
1126 elif st == 'iter':
1118 states = matches[rev].items()
1127 states = matches[rev].items()
1119 states.sort()
1128 states.sort()
1120 for fn, m in states:
1129 for fn, m in states:
1121 copy = copies.get(rev, {}).get(fn)
1130 copy = copies.get(rev, {}).get(fn)
1122 if fn in skip:
1131 if fn in skip:
1123 if copy:
1132 if copy:
1124 skip[copy] = True
1133 skip[copy] = True
1125 continue
1134 continue
1126 if fn in prev or fstate[fn]:
1135 if fn in prev or fstate[fn]:
1127 r = display(fn, rev, m, fstate[fn])
1136 r = display(fn, rev, m, fstate[fn])
1128 found = found or r
1137 found = found or r
1129 if r and not opts['all']:
1138 if r and not opts['all']:
1130 skip[fn] = True
1139 skip[fn] = True
1131 if copy:
1140 if copy:
1132 skip[copy] = True
1141 skip[copy] = True
1133 fstate[fn] = m
1142 fstate[fn] = m
1134 if copy:
1143 if copy:
1135 fstate[copy] = m
1144 fstate[copy] = m
1136 prev[fn] = rev
1145 prev[fn] = rev
1137
1146
1138 fstate = fstate.items()
1147 fstate = fstate.items()
1139 fstate.sort()
1148 fstate.sort()
1140 for fn, state in fstate:
1149 for fn, state in fstate:
1141 if fn in skip:
1150 if fn in skip:
1142 continue
1151 continue
1143 if fn not in copies.get(prev[fn], {}):
1152 if fn not in copies.get(prev[fn], {}):
1144 found = display(fn, rev, {}, state) or found
1153 found = display(fn, rev, {}, state) or found
1145 return (not found and 1) or 0
1154 return (not found and 1) or 0
1146
1155
1147 def heads(ui, repo, *branchrevs, **opts):
1156 def heads(ui, repo, *branchrevs, **opts):
1148 """show current repository heads or show branch heads
1157 """show current repository heads or show branch heads
1149
1158
1150 With no arguments, show all repository head changesets.
1159 With no arguments, show all repository head changesets.
1151
1160
1152 If branch or revisions names are given this will show the heads of
1161 If branch or revisions names are given this will show the heads of
1153 the specified branches or the branches those revisions are tagged
1162 the specified branches or the branches those revisions are tagged
1154 with.
1163 with.
1155
1164
1156 Repository "heads" are changesets that don't have child
1165 Repository "heads" are changesets that don't have child
1157 changesets. They are where development generally takes place and
1166 changesets. They are where development generally takes place and
1158 are the usual targets for update and merge operations.
1167 are the usual targets for update and merge operations.
1159
1168
1160 Branch heads are changesets that have a given branch tag, but have
1169 Branch heads are changesets that have a given branch tag, but have
1161 no child changesets with that tag. They are usually where
1170 no child changesets with that tag. They are usually where
1162 development on the given branch takes place.
1171 development on the given branch takes place.
1163 """
1172 """
1164 if opts['rev']:
1173 if opts['rev']:
1165 start = repo.lookup(opts['rev'])
1174 start = repo.lookup(opts['rev'])
1166 else:
1175 else:
1167 start = None
1176 start = None
1168 if not branchrevs:
1177 if not branchrevs:
1169 # Assume we're looking repo-wide heads if no revs were specified.
1178 # Assume we're looking repo-wide heads if no revs were specified.
1170 heads = repo.heads(start)
1179 heads = repo.heads(start)
1171 else:
1180 else:
1172 heads = []
1181 heads = []
1173 visitedset = util.set()
1182 visitedset = util.set()
1174 for branchrev in branchrevs:
1183 for branchrev in branchrevs:
1175 branch = repo.changectx(branchrev).branch()
1184 branch = repo.changectx(branchrev).branch()
1176 if branch in visitedset:
1185 if branch in visitedset:
1177 continue
1186 continue
1178 visitedset.add(branch)
1187 visitedset.add(branch)
1179 bheads = repo.branchheads(branch, start)
1188 bheads = repo.branchheads(branch, start)
1180 if not bheads:
1189 if not bheads:
1181 if branch != branchrev:
1190 if branch != branchrev:
1182 ui.warn(_("no changes on branch %s containing %s are "
1191 ui.warn(_("no changes on branch %s containing %s are "
1183 "reachable from %s\n")
1192 "reachable from %s\n")
1184 % (branch, branchrev, opts['rev']))
1193 % (branch, branchrev, opts['rev']))
1185 else:
1194 else:
1186 ui.warn(_("no changes on branch %s are reachable from %s\n")
1195 ui.warn(_("no changes on branch %s are reachable from %s\n")
1187 % (branch, opts['rev']))
1196 % (branch, opts['rev']))
1188 heads.extend(bheads)
1197 heads.extend(bheads)
1189 if not heads:
1198 if not heads:
1190 return 1
1199 return 1
1191 displayer = cmdutil.show_changeset(ui, repo, opts)
1200 displayer = cmdutil.show_changeset(ui, repo, opts)
1192 for n in heads:
1201 for n in heads:
1193 displayer.show(changenode=n)
1202 displayer.show(changenode=n)
1194
1203
1195 def help_(ui, name=None, with_version=False):
1204 def help_(ui, name=None, with_version=False):
1196 """show help for a command, extension, or list of commands
1205 """show help for a command, extension, or list of commands
1197
1206
1198 With no arguments, print a list of commands and short help.
1207 With no arguments, print a list of commands and short help.
1199
1208
1200 Given a command name, print help for that command.
1209 Given a command name, print help for that command.
1201
1210
1202 Given an extension name, print help for that extension, and the
1211 Given an extension name, print help for that extension, and the
1203 commands it provides."""
1212 commands it provides."""
1204 option_lists = []
1213 option_lists = []
1205
1214
1206 def addglobalopts(aliases):
1215 def addglobalopts(aliases):
1207 if ui.verbose:
1216 if ui.verbose:
1208 option_lists.append((_("global options:"), globalopts))
1217 option_lists.append((_("global options:"), globalopts))
1209 if name == 'shortlist':
1218 if name == 'shortlist':
1210 option_lists.append((_('use "hg help" for the full list '
1219 option_lists.append((_('use "hg help" for the full list '
1211 'of commands'), ()))
1220 'of commands'), ()))
1212 else:
1221 else:
1213 if name == 'shortlist':
1222 if name == 'shortlist':
1214 msg = _('use "hg help" for the full list of commands '
1223 msg = _('use "hg help" for the full list of commands '
1215 'or "hg -v" for details')
1224 'or "hg -v" for details')
1216 elif aliases:
1225 elif aliases:
1217 msg = _('use "hg -v help%s" to show aliases and '
1226 msg = _('use "hg -v help%s" to show aliases and '
1218 'global options') % (name and " " + name or "")
1227 'global options') % (name and " " + name or "")
1219 else:
1228 else:
1220 msg = _('use "hg -v help %s" to show global options') % name
1229 msg = _('use "hg -v help %s" to show global options') % name
1221 option_lists.append((msg, ()))
1230 option_lists.append((msg, ()))
1222
1231
1223 def helpcmd(name):
1232 def helpcmd(name):
1224 if with_version:
1233 if with_version:
1225 version_(ui)
1234 version_(ui)
1226 ui.write('\n')
1235 ui.write('\n')
1227 aliases, i = cmdutil.findcmd(ui, name, table)
1236 aliases, i = cmdutil.findcmd(ui, name, table)
1228 # synopsis
1237 # synopsis
1229 ui.write("%s\n" % i[2])
1238 ui.write("%s\n" % i[2])
1230
1239
1231 # aliases
1240 # aliases
1232 if not ui.quiet and len(aliases) > 1:
1241 if not ui.quiet and len(aliases) > 1:
1233 ui.write(_("\naliases: %s\n") % ', '.join(aliases[1:]))
1242 ui.write(_("\naliases: %s\n") % ', '.join(aliases[1:]))
1234
1243
1235 # description
1244 # description
1236 doc = i[0].__doc__
1245 doc = i[0].__doc__
1237 if not doc:
1246 if not doc:
1238 doc = _("(No help text available)")
1247 doc = _("(No help text available)")
1239 if ui.quiet:
1248 if ui.quiet:
1240 doc = doc.splitlines(0)[0]
1249 doc = doc.splitlines(0)[0]
1241 ui.write("\n%s\n" % doc.rstrip())
1250 ui.write("\n%s\n" % doc.rstrip())
1242
1251
1243 if not ui.quiet:
1252 if not ui.quiet:
1244 # options
1253 # options
1245 if i[1]:
1254 if i[1]:
1246 option_lists.append((_("options:\n"), i[1]))
1255 option_lists.append((_("options:\n"), i[1]))
1247
1256
1248 addglobalopts(False)
1257 addglobalopts(False)
1249
1258
1250 def helplist(header, select=None):
1259 def helplist(header, select=None):
1251 h = {}
1260 h = {}
1252 cmds = {}
1261 cmds = {}
1253 for c, e in table.items():
1262 for c, e in table.items():
1254 f = c.split("|", 1)[0]
1263 f = c.split("|", 1)[0]
1255 if select and not select(f):
1264 if select and not select(f):
1256 continue
1265 continue
1257 if name == "shortlist" and not f.startswith("^"):
1266 if name == "shortlist" and not f.startswith("^"):
1258 continue
1267 continue
1259 f = f.lstrip("^")
1268 f = f.lstrip("^")
1260 if not ui.debugflag and f.startswith("debug"):
1269 if not ui.debugflag and f.startswith("debug"):
1261 continue
1270 continue
1262 doc = e[0].__doc__
1271 doc = e[0].__doc__
1263 if not doc:
1272 if not doc:
1264 doc = _("(No help text available)")
1273 doc = _("(No help text available)")
1265 h[f] = doc.splitlines(0)[0].rstrip()
1274 h[f] = doc.splitlines(0)[0].rstrip()
1266 cmds[f] = c.lstrip("^")
1275 cmds[f] = c.lstrip("^")
1267
1276
1268 if not h:
1277 if not h:
1269 ui.status(_('no commands defined\n'))
1278 ui.status(_('no commands defined\n'))
1270 return
1279 return
1271
1280
1272 ui.status(header)
1281 ui.status(header)
1273 fns = h.keys()
1282 fns = h.keys()
1274 fns.sort()
1283 fns.sort()
1275 m = max(map(len, fns))
1284 m = max(map(len, fns))
1276 for f in fns:
1285 for f in fns:
1277 if ui.verbose:
1286 if ui.verbose:
1278 commands = cmds[f].replace("|",", ")
1287 commands = cmds[f].replace("|",", ")
1279 ui.write(" %s:\n %s\n"%(commands, h[f]))
1288 ui.write(" %s:\n %s\n"%(commands, h[f]))
1280 else:
1289 else:
1281 ui.write(' %-*s %s\n' % (m, f, h[f]))
1290 ui.write(' %-*s %s\n' % (m, f, h[f]))
1282
1291
1283 if not ui.quiet:
1292 if not ui.quiet:
1284 addglobalopts(True)
1293 addglobalopts(True)
1285
1294
1286 def helptopic(name):
1295 def helptopic(name):
1287 v = None
1296 v = None
1288 for i in help.helptable:
1297 for i in help.helptable:
1289 l = i.split('|')
1298 l = i.split('|')
1290 if name in l:
1299 if name in l:
1291 v = i
1300 v = i
1292 header = l[-1]
1301 header = l[-1]
1293 if not v:
1302 if not v:
1294 raise cmdutil.UnknownCommand(name)
1303 raise cmdutil.UnknownCommand(name)
1295
1304
1296 # description
1305 # description
1297 doc = help.helptable[v]
1306 doc = help.helptable[v]
1298 if not doc:
1307 if not doc:
1299 doc = _("(No help text available)")
1308 doc = _("(No help text available)")
1300 if callable(doc):
1309 if callable(doc):
1301 doc = doc()
1310 doc = doc()
1302
1311
1303 ui.write("%s\n" % header)
1312 ui.write("%s\n" % header)
1304 ui.write("%s\n" % doc.rstrip())
1313 ui.write("%s\n" % doc.rstrip())
1305
1314
1306 def helpext(name):
1315 def helpext(name):
1307 try:
1316 try:
1308 mod = extensions.find(name)
1317 mod = extensions.find(name)
1309 except KeyError:
1318 except KeyError:
1310 raise cmdutil.UnknownCommand(name)
1319 raise cmdutil.UnknownCommand(name)
1311
1320
1312 doc = (mod.__doc__ or _('No help text available')).splitlines(0)
1321 doc = (mod.__doc__ or _('No help text available')).splitlines(0)
1313 ui.write(_('%s extension - %s\n') % (name.split('.')[-1], doc[0]))
1322 ui.write(_('%s extension - %s\n') % (name.split('.')[-1], doc[0]))
1314 for d in doc[1:]:
1323 for d in doc[1:]:
1315 ui.write(d, '\n')
1324 ui.write(d, '\n')
1316
1325
1317 ui.status('\n')
1326 ui.status('\n')
1318
1327
1319 try:
1328 try:
1320 ct = mod.cmdtable
1329 ct = mod.cmdtable
1321 except AttributeError:
1330 except AttributeError:
1322 ct = {}
1331 ct = {}
1323
1332
1324 modcmds = dict.fromkeys([c.split('|', 1)[0] for c in ct])
1333 modcmds = dict.fromkeys([c.split('|', 1)[0] for c in ct])
1325 helplist(_('list of commands:\n\n'), modcmds.has_key)
1334 helplist(_('list of commands:\n\n'), modcmds.has_key)
1326
1335
1327 if name and name != 'shortlist':
1336 if name and name != 'shortlist':
1328 i = None
1337 i = None
1329 for f in (helpcmd, helptopic, helpext):
1338 for f in (helpcmd, helptopic, helpext):
1330 try:
1339 try:
1331 f(name)
1340 f(name)
1332 i = None
1341 i = None
1333 break
1342 break
1334 except cmdutil.UnknownCommand, inst:
1343 except cmdutil.UnknownCommand, inst:
1335 i = inst
1344 i = inst
1336 if i:
1345 if i:
1337 raise i
1346 raise i
1338
1347
1339 else:
1348 else:
1340 # program name
1349 # program name
1341 if ui.verbose or with_version:
1350 if ui.verbose or with_version:
1342 version_(ui)
1351 version_(ui)
1343 else:
1352 else:
1344 ui.status(_("Mercurial Distributed SCM\n"))
1353 ui.status(_("Mercurial Distributed SCM\n"))
1345 ui.status('\n')
1354 ui.status('\n')
1346
1355
1347 # list of commands
1356 # list of commands
1348 if name == "shortlist":
1357 if name == "shortlist":
1349 header = _('basic commands:\n\n')
1358 header = _('basic commands:\n\n')
1350 else:
1359 else:
1351 header = _('list of commands:\n\n')
1360 header = _('list of commands:\n\n')
1352
1361
1353 helplist(header)
1362 helplist(header)
1354
1363
1355 # list all option lists
1364 # list all option lists
1356 opt_output = []
1365 opt_output = []
1357 for title, options in option_lists:
1366 for title, options in option_lists:
1358 opt_output.append(("\n%s" % title, None))
1367 opt_output.append(("\n%s" % title, None))
1359 for shortopt, longopt, default, desc in options:
1368 for shortopt, longopt, default, desc in options:
1360 if "DEPRECATED" in desc and not ui.verbose: continue
1369 if "DEPRECATED" in desc and not ui.verbose: continue
1361 opt_output.append(("%2s%s" % (shortopt and "-%s" % shortopt,
1370 opt_output.append(("%2s%s" % (shortopt and "-%s" % shortopt,
1362 longopt and " --%s" % longopt),
1371 longopt and " --%s" % longopt),
1363 "%s%s" % (desc,
1372 "%s%s" % (desc,
1364 default
1373 default
1365 and _(" (default: %s)") % default
1374 and _(" (default: %s)") % default
1366 or "")))
1375 or "")))
1367
1376
1368 if opt_output:
1377 if opt_output:
1369 opts_len = max([len(line[0]) for line in opt_output if line[1]] or [0])
1378 opts_len = max([len(line[0]) for line in opt_output if line[1]] or [0])
1370 for first, second in opt_output:
1379 for first, second in opt_output:
1371 if second:
1380 if second:
1372 ui.write(" %-*s %s\n" % (opts_len, first, second))
1381 ui.write(" %-*s %s\n" % (opts_len, first, second))
1373 else:
1382 else:
1374 ui.write("%s\n" % first)
1383 ui.write("%s\n" % first)
1375
1384
1376 def identify(ui, repo, source=None,
1385 def identify(ui, repo, source=None,
1377 rev=None, num=None, id=None, branch=None, tags=None):
1386 rev=None, num=None, id=None, branch=None, tags=None):
1378 """identify the working copy or specified revision
1387 """identify the working copy or specified revision
1379
1388
1380 With no revision, print a summary of the current state of the repo.
1389 With no revision, print a summary of the current state of the repo.
1381
1390
1382 With a path, do a lookup in another repository.
1391 With a path, do a lookup in another repository.
1383
1392
1384 This summary identifies the repository state using one or two parent
1393 This summary identifies the repository state using one or two parent
1385 hash identifiers, followed by a "+" if there are uncommitted changes
1394 hash identifiers, followed by a "+" if there are uncommitted changes
1386 in the working directory, a list of tags for this revision and a branch
1395 in the working directory, a list of tags for this revision and a branch
1387 name for non-default branches.
1396 name for non-default branches.
1388 """
1397 """
1389
1398
1390 if not repo and not source:
1399 if not repo and not source:
1391 raise util.Abort(_("There is no Mercurial repository here "
1400 raise util.Abort(_("There is no Mercurial repository here "
1392 "(.hg not found)"))
1401 "(.hg not found)"))
1393
1402
1394 hexfunc = ui.debugflag and hex or short
1403 hexfunc = ui.debugflag and hex or short
1395 default = not (num or id or branch or tags)
1404 default = not (num or id or branch or tags)
1396 output = []
1405 output = []
1397
1406
1398 if source:
1407 if source:
1399 source, revs, checkout = hg.parseurl(ui.expandpath(source), [])
1408 source, revs, checkout = hg.parseurl(ui.expandpath(source), [])
1400 srepo = hg.repository(ui, source)
1409 srepo = hg.repository(ui, source)
1401 if not rev and revs:
1410 if not rev and revs:
1402 rev = revs[0]
1411 rev = revs[0]
1403 if not rev:
1412 if not rev:
1404 rev = "tip"
1413 rev = "tip"
1405 if num or branch or tags:
1414 if num or branch or tags:
1406 raise util.Abort(
1415 raise util.Abort(
1407 "can't query remote revision number, branch, or tags")
1416 "can't query remote revision number, branch, or tags")
1408 output = [hexfunc(srepo.lookup(rev))]
1417 output = [hexfunc(srepo.lookup(rev))]
1409 elif not rev:
1418 elif not rev:
1410 ctx = repo.workingctx()
1419 ctx = repo.workingctx()
1411 parents = ctx.parents()
1420 parents = ctx.parents()
1412 changed = False
1421 changed = False
1413 if default or id or num:
1422 if default or id or num:
1414 changed = ctx.files() + ctx.deleted()
1423 changed = ctx.files() + ctx.deleted()
1415 if default or id:
1424 if default or id:
1416 output = ["%s%s" % ('+'.join([hexfunc(p.node()) for p in parents]),
1425 output = ["%s%s" % ('+'.join([hexfunc(p.node()) for p in parents]),
1417 (changed) and "+" or "")]
1426 (changed) and "+" or "")]
1418 if num:
1427 if num:
1419 output.append("%s%s" % ('+'.join([str(p.rev()) for p in parents]),
1428 output.append("%s%s" % ('+'.join([str(p.rev()) for p in parents]),
1420 (changed) and "+" or ""))
1429 (changed) and "+" or ""))
1421 else:
1430 else:
1422 ctx = repo.changectx(rev)
1431 ctx = repo.changectx(rev)
1423 if default or id:
1432 if default or id:
1424 output = [hexfunc(ctx.node())]
1433 output = [hexfunc(ctx.node())]
1425 if num:
1434 if num:
1426 output.append(str(ctx.rev()))
1435 output.append(str(ctx.rev()))
1427
1436
1428 if not source and default and not ui.quiet:
1437 if not source and default and not ui.quiet:
1429 b = util.tolocal(ctx.branch())
1438 b = util.tolocal(ctx.branch())
1430 if b != 'default':
1439 if b != 'default':
1431 output.append("(%s)" % b)
1440 output.append("(%s)" % b)
1432
1441
1433 # multiple tags for a single parent separated by '/'
1442 # multiple tags for a single parent separated by '/'
1434 t = "/".join(ctx.tags())
1443 t = "/".join(ctx.tags())
1435 if t:
1444 if t:
1436 output.append(t)
1445 output.append(t)
1437
1446
1438 if branch:
1447 if branch:
1439 output.append(util.tolocal(ctx.branch()))
1448 output.append(util.tolocal(ctx.branch()))
1440
1449
1441 if tags:
1450 if tags:
1442 output.extend(ctx.tags())
1451 output.extend(ctx.tags())
1443
1452
1444 ui.write("%s\n" % ' '.join(output))
1453 ui.write("%s\n" % ' '.join(output))
1445
1454
1446 def import_(ui, repo, patch1, *patches, **opts):
1455 def import_(ui, repo, patch1, *patches, **opts):
1447 """import an ordered set of patches
1456 """import an ordered set of patches
1448
1457
1449 Import a list of patches and commit them individually.
1458 Import a list of patches and commit them individually.
1450
1459
1451 If there are outstanding changes in the working directory, import
1460 If there are outstanding changes in the working directory, import
1452 will abort unless given the -f flag.
1461 will abort unless given the -f flag.
1453
1462
1454 You can import a patch straight from a mail message. Even patches
1463 You can import a patch straight from a mail message. Even patches
1455 as attachments work (body part must be type text/plain or
1464 as attachments work (body part must be type text/plain or
1456 text/x-patch to be used). From and Subject headers of email
1465 text/x-patch to be used). From and Subject headers of email
1457 message are used as default committer and commit message. All
1466 message are used as default committer and commit message. All
1458 text/plain body parts before first diff are added to commit
1467 text/plain body parts before first diff are added to commit
1459 message.
1468 message.
1460
1469
1461 If the imported patch was generated by hg export, user and description
1470 If the imported patch was generated by hg export, user and description
1462 from patch override values from message headers and body. Values
1471 from patch override values from message headers and body. Values
1463 given on command line with -m and -u override these.
1472 given on command line with -m and -u override these.
1464
1473
1465 If --exact is specified, import will set the working directory
1474 If --exact is specified, import will set the working directory
1466 to the parent of each patch before applying it, and will abort
1475 to the parent of each patch before applying it, and will abort
1467 if the resulting changeset has a different ID than the one
1476 if the resulting changeset has a different ID than the one
1468 recorded in the patch. This may happen due to character set
1477 recorded in the patch. This may happen due to character set
1469 problems or other deficiencies in the text patch format.
1478 problems or other deficiencies in the text patch format.
1470
1479
1471 To read a patch from standard input, use patch name "-".
1480 To read a patch from standard input, use patch name "-".
1472 See 'hg help dates' for a list of formats valid for -d/--date.
1481 See 'hg help dates' for a list of formats valid for -d/--date.
1473 """
1482 """
1474 patches = (patch1,) + patches
1483 patches = (patch1,) + patches
1475
1484
1476 date = opts.get('date')
1485 date = opts.get('date')
1477 if date:
1486 if date:
1478 opts['date'] = util.parsedate(date)
1487 opts['date'] = util.parsedate(date)
1479
1488
1480 if opts.get('exact') or not opts['force']:
1489 if opts.get('exact') or not opts['force']:
1481 cmdutil.bail_if_changed(repo)
1490 cmdutil.bail_if_changed(repo)
1482
1491
1483 d = opts["base"]
1492 d = opts["base"]
1484 strip = opts["strip"]
1493 strip = opts["strip"]
1485 wlock = lock = None
1494 wlock = lock = None
1486 try:
1495 try:
1487 wlock = repo.wlock()
1496 wlock = repo.wlock()
1488 lock = repo.lock()
1497 lock = repo.lock()
1489 for p in patches:
1498 for p in patches:
1490 pf = os.path.join(d, p)
1499 pf = os.path.join(d, p)
1491
1500
1492 if pf == '-':
1501 if pf == '-':
1493 ui.status(_("applying patch from stdin\n"))
1502 ui.status(_("applying patch from stdin\n"))
1494 data = patch.extract(ui, sys.stdin)
1503 data = patch.extract(ui, sys.stdin)
1495 else:
1504 else:
1496 ui.status(_("applying %s\n") % p)
1505 ui.status(_("applying %s\n") % p)
1497 if os.path.exists(pf):
1506 if os.path.exists(pf):
1498 data = patch.extract(ui, file(pf, 'rb'))
1507 data = patch.extract(ui, file(pf, 'rb'))
1499 else:
1508 else:
1500 data = patch.extract(ui, urllib.urlopen(pf))
1509 data = patch.extract(ui, urllib.urlopen(pf))
1501 tmpname, message, user, date, branch, nodeid, p1, p2 = data
1510 tmpname, message, user, date, branch, nodeid, p1, p2 = data
1502
1511
1503 if tmpname is None:
1512 if tmpname is None:
1504 raise util.Abort(_('no diffs found'))
1513 raise util.Abort(_('no diffs found'))
1505
1514
1506 try:
1515 try:
1507 cmdline_message = cmdutil.logmessage(opts)
1516 cmdline_message = cmdutil.logmessage(opts)
1508 if cmdline_message:
1517 if cmdline_message:
1509 # pickup the cmdline msg
1518 # pickup the cmdline msg
1510 message = cmdline_message
1519 message = cmdline_message
1511 elif message:
1520 elif message:
1512 # pickup the patch msg
1521 # pickup the patch msg
1513 message = message.strip()
1522 message = message.strip()
1514 else:
1523 else:
1515 # launch the editor
1524 # launch the editor
1516 message = None
1525 message = None
1517 ui.debug(_('message:\n%s\n') % message)
1526 ui.debug(_('message:\n%s\n') % message)
1518
1527
1519 wp = repo.workingctx().parents()
1528 wp = repo.workingctx().parents()
1520 if opts.get('exact'):
1529 if opts.get('exact'):
1521 if not nodeid or not p1:
1530 if not nodeid or not p1:
1522 raise util.Abort(_('not a mercurial patch'))
1531 raise util.Abort(_('not a mercurial patch'))
1523 p1 = repo.lookup(p1)
1532 p1 = repo.lookup(p1)
1524 p2 = repo.lookup(p2 or hex(nullid))
1533 p2 = repo.lookup(p2 or hex(nullid))
1525
1534
1526 if p1 != wp[0].node():
1535 if p1 != wp[0].node():
1527 hg.clean(repo, p1)
1536 hg.clean(repo, p1)
1528 repo.dirstate.setparents(p1, p2)
1537 repo.dirstate.setparents(p1, p2)
1529 elif p2:
1538 elif p2:
1530 try:
1539 try:
1531 p1 = repo.lookup(p1)
1540 p1 = repo.lookup(p1)
1532 p2 = repo.lookup(p2)
1541 p2 = repo.lookup(p2)
1533 if p1 == wp[0].node():
1542 if p1 == wp[0].node():
1534 repo.dirstate.setparents(p1, p2)
1543 repo.dirstate.setparents(p1, p2)
1535 except RepoError:
1544 except RepoError:
1536 pass
1545 pass
1537 if opts.get('exact') or opts.get('import_branch'):
1546 if opts.get('exact') or opts.get('import_branch'):
1538 repo.dirstate.setbranch(branch or 'default')
1547 repo.dirstate.setbranch(branch or 'default')
1539
1548
1540 files = {}
1549 files = {}
1541 try:
1550 try:
1542 fuzz = patch.patch(tmpname, ui, strip=strip, cwd=repo.root,
1551 fuzz = patch.patch(tmpname, ui, strip=strip, cwd=repo.root,
1543 files=files)
1552 files=files)
1544 finally:
1553 finally:
1545 files = patch.updatedir(ui, repo, files)
1554 files = patch.updatedir(ui, repo, files)
1546 if not opts.get('no_commit'):
1555 if not opts.get('no_commit'):
1547 n = repo.commit(files, message, opts.get('user') or user,
1556 n = repo.commit(files, message, opts.get('user') or user,
1548 opts.get('date') or date)
1557 opts.get('date') or date)
1549 if opts.get('exact'):
1558 if opts.get('exact'):
1550 if hex(n) != nodeid:
1559 if hex(n) != nodeid:
1551 repo.rollback()
1560 repo.rollback()
1552 raise util.Abort(_('patch is damaged'
1561 raise util.Abort(_('patch is damaged'
1553 ' or loses information'))
1562 ' or loses information'))
1554 # Force a dirstate write so that the next transaction
1563 # Force a dirstate write so that the next transaction
1555 # backups an up-do-date file.
1564 # backups an up-do-date file.
1556 repo.dirstate.write()
1565 repo.dirstate.write()
1557 finally:
1566 finally:
1558 os.unlink(tmpname)
1567 os.unlink(tmpname)
1559 finally:
1568 finally:
1560 del lock, wlock
1569 del lock, wlock
1561
1570
1562 def incoming(ui, repo, source="default", **opts):
1571 def incoming(ui, repo, source="default", **opts):
1563 """show new changesets found in source
1572 """show new changesets found in source
1564
1573
1565 Show new changesets found in the specified path/URL or the default
1574 Show new changesets found in the specified path/URL or the default
1566 pull location. These are the changesets that would be pulled if a pull
1575 pull location. These are the changesets that would be pulled if a pull
1567 was requested.
1576 was requested.
1568
1577
1569 For remote repository, using --bundle avoids downloading the changesets
1578 For remote repository, using --bundle avoids downloading the changesets
1570 twice if the incoming is followed by a pull.
1579 twice if the incoming is followed by a pull.
1571
1580
1572 See pull for valid source format details.
1581 See pull for valid source format details.
1573 """
1582 """
1574 limit = cmdutil.loglimit(opts)
1583 limit = cmdutil.loglimit(opts)
1575 source, revs, checkout = hg.parseurl(ui.expandpath(source), opts['rev'])
1584 source, revs, checkout = hg.parseurl(ui.expandpath(source), opts['rev'])
1576 cmdutil.setremoteconfig(ui, opts)
1585 cmdutil.setremoteconfig(ui, opts)
1577
1586
1578 other = hg.repository(ui, source)
1587 other = hg.repository(ui, source)
1579 ui.status(_('comparing with %s\n') % util.hidepassword(source))
1588 ui.status(_('comparing with %s\n') % util.hidepassword(source))
1580 if revs:
1589 if revs:
1581 revs = [other.lookup(rev) for rev in revs]
1590 revs = [other.lookup(rev) for rev in revs]
1582 incoming = repo.findincoming(other, heads=revs, force=opts["force"])
1591 incoming = repo.findincoming(other, heads=revs, force=opts["force"])
1583 if not incoming:
1592 if not incoming:
1584 try:
1593 try:
1585 os.unlink(opts["bundle"])
1594 os.unlink(opts["bundle"])
1586 except:
1595 except:
1587 pass
1596 pass
1588 ui.status(_("no changes found\n"))
1597 ui.status(_("no changes found\n"))
1589 return 1
1598 return 1
1590
1599
1591 cleanup = None
1600 cleanup = None
1592 try:
1601 try:
1593 fname = opts["bundle"]
1602 fname = opts["bundle"]
1594 if fname or not other.local():
1603 if fname or not other.local():
1595 # create a bundle (uncompressed if other repo is not local)
1604 # create a bundle (uncompressed if other repo is not local)
1596 if revs is None:
1605 if revs is None:
1597 cg = other.changegroup(incoming, "incoming")
1606 cg = other.changegroup(incoming, "incoming")
1598 else:
1607 else:
1599 cg = other.changegroupsubset(incoming, revs, 'incoming')
1608 cg = other.changegroupsubset(incoming, revs, 'incoming')
1600 bundletype = other.local() and "HG10BZ" or "HG10UN"
1609 bundletype = other.local() and "HG10BZ" or "HG10UN"
1601 fname = cleanup = changegroup.writebundle(cg, fname, bundletype)
1610 fname = cleanup = changegroup.writebundle(cg, fname, bundletype)
1602 # keep written bundle?
1611 # keep written bundle?
1603 if opts["bundle"]:
1612 if opts["bundle"]:
1604 cleanup = None
1613 cleanup = None
1605 if not other.local():
1614 if not other.local():
1606 # use the created uncompressed bundlerepo
1615 # use the created uncompressed bundlerepo
1607 other = bundlerepo.bundlerepository(ui, repo.root, fname)
1616 other = bundlerepo.bundlerepository(ui, repo.root, fname)
1608
1617
1609 o = other.changelog.nodesbetween(incoming, revs)[0]
1618 o = other.changelog.nodesbetween(incoming, revs)[0]
1610 if opts['newest_first']:
1619 if opts['newest_first']:
1611 o.reverse()
1620 o.reverse()
1612 displayer = cmdutil.show_changeset(ui, other, opts)
1621 displayer = cmdutil.show_changeset(ui, other, opts)
1613 count = 0
1622 count = 0
1614 for n in o:
1623 for n in o:
1615 if count >= limit:
1624 if count >= limit:
1616 break
1625 break
1617 parents = [p for p in other.changelog.parents(n) if p != nullid]
1626 parents = [p for p in other.changelog.parents(n) if p != nullid]
1618 if opts['no_merges'] and len(parents) == 2:
1627 if opts['no_merges'] and len(parents) == 2:
1619 continue
1628 continue
1620 count += 1
1629 count += 1
1621 displayer.show(changenode=n)
1630 displayer.show(changenode=n)
1622 finally:
1631 finally:
1623 if hasattr(other, 'close'):
1632 if hasattr(other, 'close'):
1624 other.close()
1633 other.close()
1625 if cleanup:
1634 if cleanup:
1626 os.unlink(cleanup)
1635 os.unlink(cleanup)
1627
1636
1628 def init(ui, dest=".", **opts):
1637 def init(ui, dest=".", **opts):
1629 """create a new repository in the given directory
1638 """create a new repository in the given directory
1630
1639
1631 Initialize a new repository in the given directory. If the given
1640 Initialize a new repository in the given directory. If the given
1632 directory does not exist, it is created.
1641 directory does not exist, it is created.
1633
1642
1634 If no directory is given, the current directory is used.
1643 If no directory is given, the current directory is used.
1635
1644
1636 It is possible to specify an ssh:// URL as the destination.
1645 It is possible to specify an ssh:// URL as the destination.
1637 Look at the help text for the pull command for important details
1646 Look at the help text for the pull command for important details
1638 about ssh:// URLs.
1647 about ssh:// URLs.
1639 """
1648 """
1640 cmdutil.setremoteconfig(ui, opts)
1649 cmdutil.setremoteconfig(ui, opts)
1641 hg.repository(ui, dest, create=1)
1650 hg.repository(ui, dest, create=1)
1642
1651
1643 def locate(ui, repo, *pats, **opts):
1652 def locate(ui, repo, *pats, **opts):
1644 """locate files matching specific patterns
1653 """locate files matching specific patterns
1645
1654
1646 Print all files under Mercurial control whose names match the
1655 Print all files under Mercurial control whose names match the
1647 given patterns.
1656 given patterns.
1648
1657
1649 This command searches the entire repository by default. To search
1658 This command searches the entire repository by default. To search
1650 just the current directory and its subdirectories, use
1659 just the current directory and its subdirectories, use
1651 "--include .".
1660 "--include .".
1652
1661
1653 If no patterns are given to match, this command prints all file
1662 If no patterns are given to match, this command prints all file
1654 names.
1663 names.
1655
1664
1656 If you want to feed the output of this command into the "xargs"
1665 If you want to feed the output of this command into the "xargs"
1657 command, use the "-0" option to both this command and "xargs".
1666 command, use the "-0" option to both this command and "xargs".
1658 This will avoid the problem of "xargs" treating single filenames
1667 This will avoid the problem of "xargs" treating single filenames
1659 that contain white space as multiple filenames.
1668 that contain white space as multiple filenames.
1660 """
1669 """
1661 end = opts['print0'] and '\0' or '\n'
1670 end = opts['print0'] and '\0' or '\n'
1662 rev = opts['rev']
1671 rev = opts['rev']
1663 if rev:
1672 if rev:
1664 node = repo.lookup(rev)
1673 node = repo.lookup(rev)
1665 else:
1674 else:
1666 node = None
1675 node = None
1667
1676
1668 ret = 1
1677 ret = 1
1669 for src, abs, rel, exact in cmdutil.walk(repo, pats, opts, node=node,
1678 for src, abs, rel, exact in cmdutil.walk(repo, pats, opts, node=node,
1670 badmatch=util.always,
1679 badmatch=util.always,
1671 default='relglob'):
1680 default='relglob'):
1672 if src == 'b':
1681 if src == 'b':
1673 continue
1682 continue
1674 if not node and abs not in repo.dirstate:
1683 if not node and abs not in repo.dirstate:
1675 continue
1684 continue
1676 if opts['fullpath']:
1685 if opts['fullpath']:
1677 ui.write(os.path.join(repo.root, abs), end)
1686 ui.write(os.path.join(repo.root, abs), end)
1678 else:
1687 else:
1679 ui.write(((pats and rel) or abs), end)
1688 ui.write(((pats and rel) or abs), end)
1680 ret = 0
1689 ret = 0
1681
1690
1682 return ret
1691 return ret
1683
1692
1684 def log(ui, repo, *pats, **opts):
1693 def log(ui, repo, *pats, **opts):
1685 """show revision history of entire repository or files
1694 """show revision history of entire repository or files
1686
1695
1687 Print the revision history of the specified files or the entire
1696 Print the revision history of the specified files or the entire
1688 project.
1697 project.
1689
1698
1690 File history is shown without following rename or copy history of
1699 File history is shown without following rename or copy history of
1691 files. Use -f/--follow with a file name to follow history across
1700 files. Use -f/--follow with a file name to follow history across
1692 renames and copies. --follow without a file name will only show
1701 renames and copies. --follow without a file name will only show
1693 ancestors or descendants of the starting revision. --follow-first
1702 ancestors or descendants of the starting revision. --follow-first
1694 only follows the first parent of merge revisions.
1703 only follows the first parent of merge revisions.
1695
1704
1696 If no revision range is specified, the default is tip:0 unless
1705 If no revision range is specified, the default is tip:0 unless
1697 --follow is set, in which case the working directory parent is
1706 --follow is set, in which case the working directory parent is
1698 used as the starting revision.
1707 used as the starting revision.
1699
1708
1700 See 'hg help dates' for a list of formats valid for -d/--date.
1709 See 'hg help dates' for a list of formats valid for -d/--date.
1701
1710
1702 By default this command outputs: changeset id and hash, tags,
1711 By default this command outputs: changeset id and hash, tags,
1703 non-trivial parents, user, date and time, and a summary for each
1712 non-trivial parents, user, date and time, and a summary for each
1704 commit. When the -v/--verbose switch is used, the list of changed
1713 commit. When the -v/--verbose switch is used, the list of changed
1705 files and full commit message is shown.
1714 files and full commit message is shown.
1706
1715
1707 NOTE: log -p may generate unexpected diff output for merge
1716 NOTE: log -p may generate unexpected diff output for merge
1708 changesets, as it will compare the merge changeset against its
1717 changesets, as it will compare the merge changeset against its
1709 first parent only. Also, the files: list will only reflect files
1718 first parent only. Also, the files: list will only reflect files
1710 that are different from BOTH parents.
1719 that are different from BOTH parents.
1711
1720
1712 """
1721 """
1713
1722
1714 get = util.cachefunc(lambda r: repo.changectx(r).changeset())
1723 get = util.cachefunc(lambda r: repo.changectx(r).changeset())
1715 changeiter, matchfn = cmdutil.walkchangerevs(ui, repo, pats, get, opts)
1724 changeiter, matchfn = cmdutil.walkchangerevs(ui, repo, pats, get, opts)
1716
1725
1717 limit = cmdutil.loglimit(opts)
1726 limit = cmdutil.loglimit(opts)
1718 count = 0
1727 count = 0
1719
1728
1720 if opts['copies'] and opts['rev']:
1729 if opts['copies'] and opts['rev']:
1721 endrev = max(cmdutil.revrange(repo, opts['rev'])) + 1
1730 endrev = max(cmdutil.revrange(repo, opts['rev'])) + 1
1722 else:
1731 else:
1723 endrev = repo.changelog.count()
1732 endrev = repo.changelog.count()
1724 rcache = {}
1733 rcache = {}
1725 ncache = {}
1734 ncache = {}
1726 def getrenamed(fn, rev):
1735 def getrenamed(fn, rev):
1727 '''looks up all renames for a file (up to endrev) the first
1736 '''looks up all renames for a file (up to endrev) the first
1728 time the file is given. It indexes on the changerev and only
1737 time the file is given. It indexes on the changerev and only
1729 parses the manifest if linkrev != changerev.
1738 parses the manifest if linkrev != changerev.
1730 Returns rename info for fn at changerev rev.'''
1739 Returns rename info for fn at changerev rev.'''
1731 if fn not in rcache:
1740 if fn not in rcache:
1732 rcache[fn] = {}
1741 rcache[fn] = {}
1733 ncache[fn] = {}
1742 ncache[fn] = {}
1734 fl = repo.file(fn)
1743 fl = repo.file(fn)
1735 for i in xrange(fl.count()):
1744 for i in xrange(fl.count()):
1736 node = fl.node(i)
1745 node = fl.node(i)
1737 lr = fl.linkrev(node)
1746 lr = fl.linkrev(node)
1738 renamed = fl.renamed(node)
1747 renamed = fl.renamed(node)
1739 rcache[fn][lr] = renamed
1748 rcache[fn][lr] = renamed
1740 if renamed:
1749 if renamed:
1741 ncache[fn][node] = renamed
1750 ncache[fn][node] = renamed
1742 if lr >= endrev:
1751 if lr >= endrev:
1743 break
1752 break
1744 if rev in rcache[fn]:
1753 if rev in rcache[fn]:
1745 return rcache[fn][rev]
1754 return rcache[fn][rev]
1746
1755
1747 # If linkrev != rev (i.e. rev not found in rcache) fallback to
1756 # If linkrev != rev (i.e. rev not found in rcache) fallback to
1748 # filectx logic.
1757 # filectx logic.
1749
1758
1750 try:
1759 try:
1751 return repo.changectx(rev).filectx(fn).renamed()
1760 return repo.changectx(rev).filectx(fn).renamed()
1752 except revlog.LookupError:
1761 except revlog.LookupError:
1753 pass
1762 pass
1754 return None
1763 return None
1755
1764
1756 df = False
1765 df = False
1757 if opts["date"]:
1766 if opts["date"]:
1758 df = util.matchdate(opts["date"])
1767 df = util.matchdate(opts["date"])
1759
1768
1760 only_branches = opts['only_branch']
1769 only_branches = opts['only_branch']
1761
1770
1762 displayer = cmdutil.show_changeset(ui, repo, opts, True, matchfn)
1771 displayer = cmdutil.show_changeset(ui, repo, opts, True, matchfn)
1763 for st, rev, fns in changeiter:
1772 for st, rev, fns in changeiter:
1764 if st == 'add':
1773 if st == 'add':
1765 changenode = repo.changelog.node(rev)
1774 changenode = repo.changelog.node(rev)
1766 parents = [p for p in repo.changelog.parentrevs(rev)
1775 parents = [p for p in repo.changelog.parentrevs(rev)
1767 if p != nullrev]
1776 if p != nullrev]
1768 if opts['no_merges'] and len(parents) == 2:
1777 if opts['no_merges'] and len(parents) == 2:
1769 continue
1778 continue
1770 if opts['only_merges'] and len(parents) != 2:
1779 if opts['only_merges'] and len(parents) != 2:
1771 continue
1780 continue
1772
1781
1773 if only_branches:
1782 if only_branches:
1774 revbranch = get(rev)[5]['branch']
1783 revbranch = get(rev)[5]['branch']
1775 if revbranch not in only_branches:
1784 if revbranch not in only_branches:
1776 continue
1785 continue
1777
1786
1778 if df:
1787 if df:
1779 changes = get(rev)
1788 changes = get(rev)
1780 if not df(changes[2][0]):
1789 if not df(changes[2][0]):
1781 continue
1790 continue
1782
1791
1783 if opts['keyword']:
1792 if opts['keyword']:
1784 changes = get(rev)
1793 changes = get(rev)
1785 miss = 0
1794 miss = 0
1786 for k in [kw.lower() for kw in opts['keyword']]:
1795 for k in [kw.lower() for kw in opts['keyword']]:
1787 if not (k in changes[1].lower() or
1796 if not (k in changes[1].lower() or
1788 k in changes[4].lower() or
1797 k in changes[4].lower() or
1789 k in " ".join(changes[3]).lower()):
1798 k in " ".join(changes[3]).lower()):
1790 miss = 1
1799 miss = 1
1791 break
1800 break
1792 if miss:
1801 if miss:
1793 continue
1802 continue
1794
1803
1795 copies = []
1804 copies = []
1796 if opts.get('copies') and rev:
1805 if opts.get('copies') and rev:
1797 for fn in get(rev)[3]:
1806 for fn in get(rev)[3]:
1798 rename = getrenamed(fn, rev)
1807 rename = getrenamed(fn, rev)
1799 if rename:
1808 if rename:
1800 copies.append((fn, rename[0]))
1809 copies.append((fn, rename[0]))
1801 displayer.show(rev, changenode, copies=copies)
1810 displayer.show(rev, changenode, copies=copies)
1802 elif st == 'iter':
1811 elif st == 'iter':
1803 if count == limit: break
1812 if count == limit: break
1804 if displayer.flush(rev):
1813 if displayer.flush(rev):
1805 count += 1
1814 count += 1
1806
1815
1807 def manifest(ui, repo, node=None, rev=None):
1816 def manifest(ui, repo, node=None, rev=None):
1808 """output the current or given revision of the project manifest
1817 """output the current or given revision of the project manifest
1809
1818
1810 Print a list of version controlled files for the given revision.
1819 Print a list of version controlled files for the given revision.
1811 If no revision is given, the parent of the working directory is used,
1820 If no revision is given, the parent of the working directory is used,
1812 or tip if no revision is checked out.
1821 or tip if no revision is checked out.
1813
1822
1814 The manifest is the list of files being version controlled. If no revision
1823 The manifest is the list of files being version controlled. If no revision
1815 is given then the first parent of the working directory is used.
1824 is given then the first parent of the working directory is used.
1816
1825
1817 With -v flag, print file permissions, symlink and executable bits. With
1826 With -v flag, print file permissions, symlink and executable bits. With
1818 --debug flag, print file revision hashes.
1827 --debug flag, print file revision hashes.
1819 """
1828 """
1820
1829
1821 if rev and node:
1830 if rev and node:
1822 raise util.Abort(_("please specify just one revision"))
1831 raise util.Abort(_("please specify just one revision"))
1823
1832
1824 if not node:
1833 if not node:
1825 node = rev
1834 node = rev
1826
1835
1827 m = repo.changectx(node).manifest()
1836 m = repo.changectx(node).manifest()
1828 files = m.keys()
1837 files = m.keys()
1829 files.sort()
1838 files.sort()
1830
1839
1831 for f in files:
1840 for f in files:
1832 if ui.debugflag:
1841 if ui.debugflag:
1833 ui.write("%40s " % hex(m[f]))
1842 ui.write("%40s " % hex(m[f]))
1834 if ui.verbose:
1843 if ui.verbose:
1835 type = m.execf(f) and "*" or m.linkf(f) and "@" or " "
1844 type = m.execf(f) and "*" or m.linkf(f) and "@" or " "
1836 perm = m.execf(f) and "755" or "644"
1845 perm = m.execf(f) and "755" or "644"
1837 ui.write("%3s %1s " % (perm, type))
1846 ui.write("%3s %1s " % (perm, type))
1838 ui.write("%s\n" % f)
1847 ui.write("%s\n" % f)
1839
1848
1840 def merge(ui, repo, node=None, force=None, rev=None):
1849 def merge(ui, repo, node=None, force=None, rev=None):
1841 """merge working directory with another revision
1850 """merge working directory with another revision
1842
1851
1843 Merge the contents of the current working directory and the
1852 Merge the contents of the current working directory and the
1844 requested revision. Files that changed between either parent are
1853 requested revision. Files that changed between either parent are
1845 marked as changed for the next commit and a commit must be
1854 marked as changed for the next commit and a commit must be
1846 performed before any further updates are allowed.
1855 performed before any further updates are allowed.
1847
1856
1848 If no revision is specified, the working directory's parent is a
1857 If no revision is specified, the working directory's parent is a
1849 head revision, and the repository contains exactly one other head,
1858 head revision, and the repository contains exactly one other head,
1850 the other head is merged with by default. Otherwise, an explicit
1859 the other head is merged with by default. Otherwise, an explicit
1851 revision to merge with must be provided.
1860 revision to merge with must be provided.
1852 """
1861 """
1853
1862
1854 if rev and node:
1863 if rev and node:
1855 raise util.Abort(_("please specify just one revision"))
1864 raise util.Abort(_("please specify just one revision"))
1856 if not node:
1865 if not node:
1857 node = rev
1866 node = rev
1858
1867
1859 if not node:
1868 if not node:
1860 heads = repo.heads()
1869 heads = repo.heads()
1861 if len(heads) > 2:
1870 if len(heads) > 2:
1862 raise util.Abort(_('repo has %d heads - '
1871 raise util.Abort(_('repo has %d heads - '
1863 'please merge with an explicit rev') %
1872 'please merge with an explicit rev') %
1864 len(heads))
1873 len(heads))
1865 parent = repo.dirstate.parents()[0]
1874 parent = repo.dirstate.parents()[0]
1866 if len(heads) == 1:
1875 if len(heads) == 1:
1867 msg = _('there is nothing to merge')
1876 msg = _('there is nothing to merge')
1868 if parent != repo.lookup(repo.workingctx().branch()):
1877 if parent != repo.lookup(repo.workingctx().branch()):
1869 msg = _('%s - use "hg update" instead') % msg
1878 msg = _('%s - use "hg update" instead') % msg
1870 raise util.Abort(msg)
1879 raise util.Abort(msg)
1871
1880
1872 if parent not in heads:
1881 if parent not in heads:
1873 raise util.Abort(_('working dir not at a head rev - '
1882 raise util.Abort(_('working dir not at a head rev - '
1874 'use "hg update" or merge with an explicit rev'))
1883 'use "hg update" or merge with an explicit rev'))
1875 node = parent == heads[0] and heads[-1] or heads[0]
1884 node = parent == heads[0] and heads[-1] or heads[0]
1876 return hg.merge(repo, node, force=force)
1885 return hg.merge(repo, node, force=force)
1877
1886
1878 def outgoing(ui, repo, dest=None, **opts):
1887 def outgoing(ui, repo, dest=None, **opts):
1879 """show changesets not found in destination
1888 """show changesets not found in destination
1880
1889
1881 Show changesets not found in the specified destination repository or
1890 Show changesets not found in the specified destination repository or
1882 the default push location. These are the changesets that would be pushed
1891 the default push location. These are the changesets that would be pushed
1883 if a push was requested.
1892 if a push was requested.
1884
1893
1885 See pull for valid destination format details.
1894 See pull for valid destination format details.
1886 """
1895 """
1887 limit = cmdutil.loglimit(opts)
1896 limit = cmdutil.loglimit(opts)
1888 dest, revs, checkout = hg.parseurl(
1897 dest, revs, checkout = hg.parseurl(
1889 ui.expandpath(dest or 'default-push', dest or 'default'), opts['rev'])
1898 ui.expandpath(dest or 'default-push', dest or 'default'), opts['rev'])
1890 cmdutil.setremoteconfig(ui, opts)
1899 cmdutil.setremoteconfig(ui, opts)
1891 if revs:
1900 if revs:
1892 revs = [repo.lookup(rev) for rev in revs]
1901 revs = [repo.lookup(rev) for rev in revs]
1893
1902
1894 other = hg.repository(ui, dest)
1903 other = hg.repository(ui, dest)
1895 ui.status(_('comparing with %s\n') % util.hidepassword(dest))
1904 ui.status(_('comparing with %s\n') % util.hidepassword(dest))
1896 o = repo.findoutgoing(other, force=opts['force'])
1905 o = repo.findoutgoing(other, force=opts['force'])
1897 if not o:
1906 if not o:
1898 ui.status(_("no changes found\n"))
1907 ui.status(_("no changes found\n"))
1899 return 1
1908 return 1
1900 o = repo.changelog.nodesbetween(o, revs)[0]
1909 o = repo.changelog.nodesbetween(o, revs)[0]
1901 if opts['newest_first']:
1910 if opts['newest_first']:
1902 o.reverse()
1911 o.reverse()
1903 displayer = cmdutil.show_changeset(ui, repo, opts)
1912 displayer = cmdutil.show_changeset(ui, repo, opts)
1904 count = 0
1913 count = 0
1905 for n in o:
1914 for n in o:
1906 if count >= limit:
1915 if count >= limit:
1907 break
1916 break
1908 parents = [p for p in repo.changelog.parents(n) if p != nullid]
1917 parents = [p for p in repo.changelog.parents(n) if p != nullid]
1909 if opts['no_merges'] and len(parents) == 2:
1918 if opts['no_merges'] and len(parents) == 2:
1910 continue
1919 continue
1911 count += 1
1920 count += 1
1912 displayer.show(changenode=n)
1921 displayer.show(changenode=n)
1913
1922
1914 def parents(ui, repo, file_=None, **opts):
1923 def parents(ui, repo, file_=None, **opts):
1915 """show the parents of the working dir or revision
1924 """show the parents of the working dir or revision
1916
1925
1917 Print the working directory's parent revisions. If a
1926 Print the working directory's parent revisions. If a
1918 revision is given via --rev, the parent of that revision
1927 revision is given via --rev, the parent of that revision
1919 will be printed. If a file argument is given, revision in
1928 will be printed. If a file argument is given, revision in
1920 which the file was last changed (before the working directory
1929 which the file was last changed (before the working directory
1921 revision or the argument to --rev if given) is printed.
1930 revision or the argument to --rev if given) is printed.
1922 """
1931 """
1923 rev = opts.get('rev')
1932 rev = opts.get('rev')
1924 if rev:
1933 if rev:
1925 ctx = repo.changectx(rev)
1934 ctx = repo.changectx(rev)
1926 else:
1935 else:
1927 ctx = repo.workingctx()
1936 ctx = repo.workingctx()
1928
1937
1929 if file_:
1938 if file_:
1930 files, match, anypats = cmdutil.matchpats(repo, (file_,), opts)
1939 files, match, anypats = cmdutil.matchpats(repo, (file_,), opts)
1931 if anypats or len(files) != 1:
1940 if anypats or len(files) != 1:
1932 raise util.Abort(_('can only specify an explicit file name'))
1941 raise util.Abort(_('can only specify an explicit file name'))
1933 file_ = files[0]
1942 file_ = files[0]
1934 filenodes = []
1943 filenodes = []
1935 for cp in ctx.parents():
1944 for cp in ctx.parents():
1936 if not cp:
1945 if not cp:
1937 continue
1946 continue
1938 try:
1947 try:
1939 filenodes.append(cp.filenode(file_))
1948 filenodes.append(cp.filenode(file_))
1940 except revlog.LookupError:
1949 except revlog.LookupError:
1941 pass
1950 pass
1942 if not filenodes:
1951 if not filenodes:
1943 raise util.Abort(_("'%s' not found in manifest!") % file_)
1952 raise util.Abort(_("'%s' not found in manifest!") % file_)
1944 fl = repo.file(file_)
1953 fl = repo.file(file_)
1945 p = [repo.lookup(fl.linkrev(fn)) for fn in filenodes]
1954 p = [repo.lookup(fl.linkrev(fn)) for fn in filenodes]
1946 else:
1955 else:
1947 p = [cp.node() for cp in ctx.parents()]
1956 p = [cp.node() for cp in ctx.parents()]
1948
1957
1949 displayer = cmdutil.show_changeset(ui, repo, opts)
1958 displayer = cmdutil.show_changeset(ui, repo, opts)
1950 for n in p:
1959 for n in p:
1951 if n != nullid:
1960 if n != nullid:
1952 displayer.show(changenode=n)
1961 displayer.show(changenode=n)
1953
1962
1954 def paths(ui, repo, search=None):
1963 def paths(ui, repo, search=None):
1955 """show definition of symbolic path names
1964 """show definition of symbolic path names
1956
1965
1957 Show definition of symbolic path name NAME. If no name is given, show
1966 Show definition of symbolic path name NAME. If no name is given, show
1958 definition of available names.
1967 definition of available names.
1959
1968
1960 Path names are defined in the [paths] section of /etc/mercurial/hgrc
1969 Path names are defined in the [paths] section of /etc/mercurial/hgrc
1961 and $HOME/.hgrc. If run inside a repository, .hg/hgrc is used, too.
1970 and $HOME/.hgrc. If run inside a repository, .hg/hgrc is used, too.
1962 """
1971 """
1963 if search:
1972 if search:
1964 for name, path in ui.configitems("paths"):
1973 for name, path in ui.configitems("paths"):
1965 if name == search:
1974 if name == search:
1966 ui.write("%s\n" % util.hidepassword(path))
1975 ui.write("%s\n" % util.hidepassword(path))
1967 return
1976 return
1968 ui.warn(_("not found!\n"))
1977 ui.warn(_("not found!\n"))
1969 return 1
1978 return 1
1970 else:
1979 else:
1971 for name, path in ui.configitems("paths"):
1980 for name, path in ui.configitems("paths"):
1972 ui.write("%s = %s\n" % (name, util.hidepassword(path)))
1981 ui.write("%s = %s\n" % (name, util.hidepassword(path)))
1973
1982
1974 def postincoming(ui, repo, modheads, optupdate, checkout):
1983 def postincoming(ui, repo, modheads, optupdate, checkout):
1975 if modheads == 0:
1984 if modheads == 0:
1976 return
1985 return
1977 if optupdate:
1986 if optupdate:
1978 if modheads <= 1 or checkout:
1987 if modheads <= 1 or checkout:
1979 return hg.update(repo, checkout)
1988 return hg.update(repo, checkout)
1980 else:
1989 else:
1981 ui.status(_("not updating, since new heads added\n"))
1990 ui.status(_("not updating, since new heads added\n"))
1982 if modheads > 1:
1991 if modheads > 1:
1983 ui.status(_("(run 'hg heads' to see heads, 'hg merge' to merge)\n"))
1992 ui.status(_("(run 'hg heads' to see heads, 'hg merge' to merge)\n"))
1984 else:
1993 else:
1985 ui.status(_("(run 'hg update' to get a working copy)\n"))
1994 ui.status(_("(run 'hg update' to get a working copy)\n"))
1986
1995
1987 def pull(ui, repo, source="default", **opts):
1996 def pull(ui, repo, source="default", **opts):
1988 """pull changes from the specified source
1997 """pull changes from the specified source
1989
1998
1990 Pull changes from a remote repository to a local one.
1999 Pull changes from a remote repository to a local one.
1991
2000
1992 This finds all changes from the repository at the specified path
2001 This finds all changes from the repository at the specified path
1993 or URL and adds them to the local repository. By default, this
2002 or URL and adds them to the local repository. By default, this
1994 does not update the copy of the project in the working directory.
2003 does not update the copy of the project in the working directory.
1995
2004
1996 Valid URLs are of the form:
2005 Valid URLs are of the form:
1997
2006
1998 local/filesystem/path (or file://local/filesystem/path)
2007 local/filesystem/path (or file://local/filesystem/path)
1999 http://[user@]host[:port]/[path]
2008 http://[user@]host[:port]/[path]
2000 https://[user@]host[:port]/[path]
2009 https://[user@]host[:port]/[path]
2001 ssh://[user@]host[:port]/[path]
2010 ssh://[user@]host[:port]/[path]
2002 static-http://host[:port]/[path]
2011 static-http://host[:port]/[path]
2003
2012
2004 Paths in the local filesystem can either point to Mercurial
2013 Paths in the local filesystem can either point to Mercurial
2005 repositories or to bundle files (as created by 'hg bundle' or
2014 repositories or to bundle files (as created by 'hg bundle' or
2006 'hg incoming --bundle'). The static-http:// protocol, albeit slow,
2015 'hg incoming --bundle'). The static-http:// protocol, albeit slow,
2007 allows access to a Mercurial repository where you simply use a web
2016 allows access to a Mercurial repository where you simply use a web
2008 server to publish the .hg directory as static content.
2017 server to publish the .hg directory as static content.
2009
2018
2010 An optional identifier after # indicates a particular branch, tag,
2019 An optional identifier after # indicates a particular branch, tag,
2011 or changeset to pull.
2020 or changeset to pull.
2012
2021
2013 Some notes about using SSH with Mercurial:
2022 Some notes about using SSH with Mercurial:
2014 - SSH requires an accessible shell account on the destination machine
2023 - SSH requires an accessible shell account on the destination machine
2015 and a copy of hg in the remote path or specified with as remotecmd.
2024 and a copy of hg in the remote path or specified with as remotecmd.
2016 - path is relative to the remote user's home directory by default.
2025 - path is relative to the remote user's home directory by default.
2017 Use an extra slash at the start of a path to specify an absolute path:
2026 Use an extra slash at the start of a path to specify an absolute path:
2018 ssh://example.com//tmp/repository
2027 ssh://example.com//tmp/repository
2019 - Mercurial doesn't use its own compression via SSH; the right thing
2028 - Mercurial doesn't use its own compression via SSH; the right thing
2020 to do is to configure it in your ~/.ssh/config, e.g.:
2029 to do is to configure it in your ~/.ssh/config, e.g.:
2021 Host *.mylocalnetwork.example.com
2030 Host *.mylocalnetwork.example.com
2022 Compression no
2031 Compression no
2023 Host *
2032 Host *
2024 Compression yes
2033 Compression yes
2025 Alternatively specify "ssh -C" as your ssh command in your hgrc or
2034 Alternatively specify "ssh -C" as your ssh command in your hgrc or
2026 with the --ssh command line option.
2035 with the --ssh command line option.
2027 """
2036 """
2028 source, revs, checkout = hg.parseurl(ui.expandpath(source), opts['rev'])
2037 source, revs, checkout = hg.parseurl(ui.expandpath(source), opts['rev'])
2029 cmdutil.setremoteconfig(ui, opts)
2038 cmdutil.setremoteconfig(ui, opts)
2030
2039
2031 other = hg.repository(ui, source)
2040 other = hg.repository(ui, source)
2032 ui.status(_('pulling from %s\n') % util.hidepassword(source))
2041 ui.status(_('pulling from %s\n') % util.hidepassword(source))
2033 if revs:
2042 if revs:
2034 try:
2043 try:
2035 revs = [other.lookup(rev) for rev in revs]
2044 revs = [other.lookup(rev) for rev in revs]
2036 except repo.NoCapability:
2045 except repo.NoCapability:
2037 error = _("Other repository doesn't support revision lookup, "
2046 error = _("Other repository doesn't support revision lookup, "
2038 "so a rev cannot be specified.")
2047 "so a rev cannot be specified.")
2039 raise util.Abort(error)
2048 raise util.Abort(error)
2040
2049
2041 modheads = repo.pull(other, heads=revs, force=opts['force'])
2050 modheads = repo.pull(other, heads=revs, force=opts['force'])
2042 return postincoming(ui, repo, modheads, opts['update'], checkout)
2051 return postincoming(ui, repo, modheads, opts['update'], checkout)
2043
2052
2044 def push(ui, repo, dest=None, **opts):
2053 def push(ui, repo, dest=None, **opts):
2045 """push changes to the specified destination
2054 """push changes to the specified destination
2046
2055
2047 Push changes from the local repository to the given destination.
2056 Push changes from the local repository to the given destination.
2048
2057
2049 This is the symmetrical operation for pull. It helps to move
2058 This is the symmetrical operation for pull. It helps to move
2050 changes from the current repository to a different one. If the
2059 changes from the current repository to a different one. If the
2051 destination is local this is identical to a pull in that directory
2060 destination is local this is identical to a pull in that directory
2052 from the current one.
2061 from the current one.
2053
2062
2054 By default, push will refuse to run if it detects the result would
2063 By default, push will refuse to run if it detects the result would
2055 increase the number of remote heads. This generally indicates the
2064 increase the number of remote heads. This generally indicates the
2056 the client has forgotten to sync and merge before pushing.
2065 the client has forgotten to sync and merge before pushing.
2057
2066
2058 Valid URLs are of the form:
2067 Valid URLs are of the form:
2059
2068
2060 local/filesystem/path (or file://local/filesystem/path)
2069 local/filesystem/path (or file://local/filesystem/path)
2061 ssh://[user@]host[:port]/[path]
2070 ssh://[user@]host[:port]/[path]
2062 http://[user@]host[:port]/[path]
2071 http://[user@]host[:port]/[path]
2063 https://[user@]host[:port]/[path]
2072 https://[user@]host[:port]/[path]
2064
2073
2065 An optional identifier after # indicates a particular branch, tag,
2074 An optional identifier after # indicates a particular branch, tag,
2066 or changeset to push.
2075 or changeset to push.
2067
2076
2068 Look at the help text for the pull command for important details
2077 Look at the help text for the pull command for important details
2069 about ssh:// URLs.
2078 about ssh:// URLs.
2070
2079
2071 Pushing to http:// and https:// URLs is only possible, if this
2080 Pushing to http:// and https:// URLs is only possible, if this
2072 feature is explicitly enabled on the remote Mercurial server.
2081 feature is explicitly enabled on the remote Mercurial server.
2073 """
2082 """
2074 dest, revs, checkout = hg.parseurl(
2083 dest, revs, checkout = hg.parseurl(
2075 ui.expandpath(dest or 'default-push', dest or 'default'), opts['rev'])
2084 ui.expandpath(dest or 'default-push', dest or 'default'), opts['rev'])
2076 cmdutil.setremoteconfig(ui, opts)
2085 cmdutil.setremoteconfig(ui, opts)
2077
2086
2078 other = hg.repository(ui, dest)
2087 other = hg.repository(ui, dest)
2079 ui.status('pushing to %s\n' % util.hidepassword(dest))
2088 ui.status('pushing to %s\n' % util.hidepassword(dest))
2080 if revs:
2089 if revs:
2081 revs = [repo.lookup(rev) for rev in revs]
2090 revs = [repo.lookup(rev) for rev in revs]
2082 r = repo.push(other, opts['force'], revs=revs)
2091 r = repo.push(other, opts['force'], revs=revs)
2083 return r == 0
2092 return r == 0
2084
2093
2085 def rawcommit(ui, repo, *pats, **opts):
2094 def rawcommit(ui, repo, *pats, **opts):
2086 """raw commit interface (DEPRECATED)
2095 """raw commit interface (DEPRECATED)
2087
2096
2088 (DEPRECATED)
2097 (DEPRECATED)
2089 Lowlevel commit, for use in helper scripts.
2098 Lowlevel commit, for use in helper scripts.
2090
2099
2091 This command is not intended to be used by normal users, as it is
2100 This command is not intended to be used by normal users, as it is
2092 primarily useful for importing from other SCMs.
2101 primarily useful for importing from other SCMs.
2093
2102
2094 This command is now deprecated and will be removed in a future
2103 This command is now deprecated and will be removed in a future
2095 release, please use debugsetparents and commit instead.
2104 release, please use debugsetparents and commit instead.
2096 """
2105 """
2097
2106
2098 ui.warn(_("(the rawcommit command is deprecated)\n"))
2107 ui.warn(_("(the rawcommit command is deprecated)\n"))
2099
2108
2100 message = cmdutil.logmessage(opts)
2109 message = cmdutil.logmessage(opts)
2101
2110
2102 files, match, anypats = cmdutil.matchpats(repo, pats, opts)
2111 files, match, anypats = cmdutil.matchpats(repo, pats, opts)
2103 if opts['files']:
2112 if opts['files']:
2104 files += open(opts['files']).read().splitlines()
2113 files += open(opts['files']).read().splitlines()
2105
2114
2106 parents = [repo.lookup(p) for p in opts['parent']]
2115 parents = [repo.lookup(p) for p in opts['parent']]
2107
2116
2108 try:
2117 try:
2109 repo.rawcommit(files, message, opts['user'], opts['date'], *parents)
2118 repo.rawcommit(files, message, opts['user'], opts['date'], *parents)
2110 except ValueError, inst:
2119 except ValueError, inst:
2111 raise util.Abort(str(inst))
2120 raise util.Abort(str(inst))
2112
2121
2113 def recover(ui, repo):
2122 def recover(ui, repo):
2114 """roll back an interrupted transaction
2123 """roll back an interrupted transaction
2115
2124
2116 Recover from an interrupted commit or pull.
2125 Recover from an interrupted commit or pull.
2117
2126
2118 This command tries to fix the repository status after an interrupted
2127 This command tries to fix the repository status after an interrupted
2119 operation. It should only be necessary when Mercurial suggests it.
2128 operation. It should only be necessary when Mercurial suggests it.
2120 """
2129 """
2121 if repo.recover():
2130 if repo.recover():
2122 return hg.verify(repo)
2131 return hg.verify(repo)
2123 return 1
2132 return 1
2124
2133
2125 def remove(ui, repo, *pats, **opts):
2134 def remove(ui, repo, *pats, **opts):
2126 """remove the specified files on the next commit
2135 """remove the specified files on the next commit
2127
2136
2128 Schedule the indicated files for removal from the repository.
2137 Schedule the indicated files for removal from the repository.
2129
2138
2130 This only removes files from the current branch, not from the entire
2139 This only removes files from the current branch, not from the entire
2131 project history. -A can be used to remove only files that have already
2140 project history. -A can be used to remove only files that have already
2132 been deleted, -f can be used to force deletion, and -Af can be used
2141 been deleted, -f can be used to force deletion, and -Af can be used
2133 to remove files from the next revision without deleting them.
2142 to remove files from the next revision without deleting them.
2134
2143
2135 The following table details the behavior of remove for different file
2144 The following table details the behavior of remove for different file
2136 states (columns) and option combinations (rows). The file states are
2145 states (columns) and option combinations (rows). The file states are
2137 Added, Clean, Modified and Missing (as reported by hg status). The
2146 Added, Clean, Modified and Missing (as reported by hg status). The
2138 actions are Warn, Remove (from branch) and Delete (from disk).
2147 actions are Warn, Remove (from branch) and Delete (from disk).
2139
2148
2140 A C M !
2149 A C M !
2141 none W RD W R
2150 none W RD W R
2142 -f R RD RD R
2151 -f R RD RD R
2143 -A W W W R
2152 -A W W W R
2144 -Af R R R R
2153 -Af R R R R
2145
2154
2146 This command schedules the files to be removed at the next commit.
2155 This command schedules the files to be removed at the next commit.
2147 To undo a remove before that, see hg revert.
2156 To undo a remove before that, see hg revert.
2148 """
2157 """
2149
2158
2150 after, force = opts.get('after'), opts.get('force')
2159 after, force = opts.get('after'), opts.get('force')
2151 if not pats and not after:
2160 if not pats and not after:
2152 raise util.Abort(_('no files specified'))
2161 raise util.Abort(_('no files specified'))
2153
2162
2154 files, matchfn, anypats = cmdutil.matchpats(repo, pats, opts)
2163 files, matchfn, anypats = cmdutil.matchpats(repo, pats, opts)
2155 mardu = map(dict.fromkeys, repo.status(files=files, match=matchfn))[:5]
2164 mardu = map(dict.fromkeys, repo.status(files=files, match=matchfn))[:5]
2156 modified, added, removed, deleted, unknown = mardu
2165 modified, added, removed, deleted, unknown = mardu
2157
2166
2158 remove, forget = [], []
2167 remove, forget = [], []
2159 for src, abs, rel, exact in cmdutil.walk(repo, pats, opts):
2168 for src, abs, rel, exact in cmdutil.walk(repo, pats, opts):
2160
2169
2161 reason = None
2170 reason = None
2162 if abs in removed or abs in unknown:
2171 if abs in removed or abs in unknown:
2163 continue
2172 continue
2164
2173
2165 # last column
2174 # last column
2166 elif abs in deleted:
2175 elif abs in deleted:
2167 remove.append(abs)
2176 remove.append(abs)
2168
2177
2169 # rest of the third row
2178 # rest of the third row
2170 elif after and not force:
2179 elif after and not force:
2171 reason = _('still exists (use -f to force removal)')
2180 reason = _('still exists (use -f to force removal)')
2172
2181
2173 # rest of the first column
2182 # rest of the first column
2174 elif abs in added:
2183 elif abs in added:
2175 if not force:
2184 if not force:
2176 reason = _('has been marked for add (use -f to force removal)')
2185 reason = _('has been marked for add (use -f to force removal)')
2177 else:
2186 else:
2178 forget.append(abs)
2187 forget.append(abs)
2179
2188
2180 # rest of the third column
2189 # rest of the third column
2181 elif abs in modified:
2190 elif abs in modified:
2182 if not force:
2191 if not force:
2183 reason = _('is modified (use -f to force removal)')
2192 reason = _('is modified (use -f to force removal)')
2184 else:
2193 else:
2185 remove.append(abs)
2194 remove.append(abs)
2186
2195
2187 # rest of the second column
2196 # rest of the second column
2188 elif not reason:
2197 elif not reason:
2189 remove.append(abs)
2198 remove.append(abs)
2190
2199
2191 if reason:
2200 if reason:
2192 ui.warn(_('not removing %s: file %s\n') % (rel, reason))
2201 ui.warn(_('not removing %s: file %s\n') % (rel, reason))
2193 elif ui.verbose or not exact:
2202 elif ui.verbose or not exact:
2194 ui.status(_('removing %s\n') % rel)
2203 ui.status(_('removing %s\n') % rel)
2195
2204
2196 repo.forget(forget)
2205 repo.forget(forget)
2197 repo.remove(remove, unlink=not after)
2206 repo.remove(remove, unlink=not after)
2198
2207
2199 def rename(ui, repo, *pats, **opts):
2208 def rename(ui, repo, *pats, **opts):
2200 """rename files; equivalent of copy + remove
2209 """rename files; equivalent of copy + remove
2201
2210
2202 Mark dest as copies of sources; mark sources for deletion. If
2211 Mark dest as copies of sources; mark sources for deletion. If
2203 dest is a directory, copies are put in that directory. If dest is
2212 dest is a directory, copies are put in that directory. If dest is
2204 a file, there can only be one source.
2213 a file, there can only be one source.
2205
2214
2206 By default, this command copies the contents of files as they
2215 By default, this command copies the contents of files as they
2207 stand in the working directory. If invoked with --after, the
2216 stand in the working directory. If invoked with --after, the
2208 operation is recorded, but no copying is performed.
2217 operation is recorded, but no copying is performed.
2209
2218
2210 This command takes effect in the next commit. To undo a rename
2219 This command takes effect in the next commit. To undo a rename
2211 before that, see hg revert.
2220 before that, see hg revert.
2212 """
2221 """
2213 wlock = repo.wlock(False)
2222 wlock = repo.wlock(False)
2214 try:
2223 try:
2215 return cmdutil.copy(ui, repo, pats, opts, rename=True)
2224 return cmdutil.copy(ui, repo, pats, opts, rename=True)
2216 finally:
2225 finally:
2217 del wlock
2226 del wlock
2218
2227
2219 def revert(ui, repo, *pats, **opts):
2228 def revert(ui, repo, *pats, **opts):
2220 """restore individual files or dirs to an earlier state
2229 """restore individual files or dirs to an earlier state
2221
2230
2222 (use update -r to check out earlier revisions, revert does not
2231 (use update -r to check out earlier revisions, revert does not
2223 change the working dir parents)
2232 change the working dir parents)
2224
2233
2225 With no revision specified, revert the named files or directories
2234 With no revision specified, revert the named files or directories
2226 to the contents they had in the parent of the working directory.
2235 to the contents they had in the parent of the working directory.
2227 This restores the contents of the affected files to an unmodified
2236 This restores the contents of the affected files to an unmodified
2228 state and unschedules adds, removes, copies, and renames. If the
2237 state and unschedules adds, removes, copies, and renames. If the
2229 working directory has two parents, you must explicitly specify the
2238 working directory has two parents, you must explicitly specify the
2230 revision to revert to.
2239 revision to revert to.
2231
2240
2232 Using the -r option, revert the given files or directories to their
2241 Using the -r option, revert the given files or directories to their
2233 contents as of a specific revision. This can be helpful to "roll
2242 contents as of a specific revision. This can be helpful to "roll
2234 back" some or all of an earlier change.
2243 back" some or all of an earlier change.
2235 See 'hg help dates' for a list of formats valid for -d/--date.
2244 See 'hg help dates' for a list of formats valid for -d/--date.
2236
2245
2237 Revert modifies the working directory. It does not commit any
2246 Revert modifies the working directory. It does not commit any
2238 changes, or change the parent of the working directory. If you
2247 changes, or change the parent of the working directory. If you
2239 revert to a revision other than the parent of the working
2248 revert to a revision other than the parent of the working
2240 directory, the reverted files will thus appear modified
2249 directory, the reverted files will thus appear modified
2241 afterwards.
2250 afterwards.
2242
2251
2243 If a file has been deleted, it is restored. If the executable
2252 If a file has been deleted, it is restored. If the executable
2244 mode of a file was changed, it is reset.
2253 mode of a file was changed, it is reset.
2245
2254
2246 If names are given, all files matching the names are reverted.
2255 If names are given, all files matching the names are reverted.
2247 If no arguments are given, no files are reverted.
2256 If no arguments are given, no files are reverted.
2248
2257
2249 Modified files are saved with a .orig suffix before reverting.
2258 Modified files are saved with a .orig suffix before reverting.
2250 To disable these backups, use --no-backup.
2259 To disable these backups, use --no-backup.
2251 """
2260 """
2252
2261
2253 if opts["date"]:
2262 if opts["date"]:
2254 if opts["rev"]:
2263 if opts["rev"]:
2255 raise util.Abort(_("you can't specify a revision and a date"))
2264 raise util.Abort(_("you can't specify a revision and a date"))
2256 opts["rev"] = cmdutil.finddate(ui, repo, opts["date"])
2265 opts["rev"] = cmdutil.finddate(ui, repo, opts["date"])
2257
2266
2258 if not pats and not opts['all']:
2267 if not pats and not opts['all']:
2259 raise util.Abort(_('no files or directories specified; '
2268 raise util.Abort(_('no files or directories specified; '
2260 'use --all to revert the whole repo'))
2269 'use --all to revert the whole repo'))
2261
2270
2262 parent, p2 = repo.dirstate.parents()
2271 parent, p2 = repo.dirstate.parents()
2263 if not opts['rev'] and p2 != nullid:
2272 if not opts['rev'] and p2 != nullid:
2264 raise util.Abort(_('uncommitted merge - please provide a '
2273 raise util.Abort(_('uncommitted merge - please provide a '
2265 'specific revision'))
2274 'specific revision'))
2266 ctx = repo.changectx(opts['rev'])
2275 ctx = repo.changectx(opts['rev'])
2267 node = ctx.node()
2276 node = ctx.node()
2268 mf = ctx.manifest()
2277 mf = ctx.manifest()
2269 if node == parent:
2278 if node == parent:
2270 pmf = mf
2279 pmf = mf
2271 else:
2280 else:
2272 pmf = None
2281 pmf = None
2273
2282
2274 # need all matching names in dirstate and manifest of target rev,
2283 # need all matching names in dirstate and manifest of target rev,
2275 # so have to walk both. do not print errors if files exist in one
2284 # so have to walk both. do not print errors if files exist in one
2276 # but not other.
2285 # but not other.
2277
2286
2278 names = {}
2287 names = {}
2279
2288
2280 wlock = repo.wlock()
2289 wlock = repo.wlock()
2281 try:
2290 try:
2282 # walk dirstate.
2291 # walk dirstate.
2283 files = []
2292 files = []
2284 for src, abs, rel, exact in cmdutil.walk(repo, pats, opts,
2293 for src, abs, rel, exact in cmdutil.walk(repo, pats, opts,
2285 badmatch=mf.has_key):
2294 badmatch=mf.has_key):
2286 names[abs] = (rel, exact)
2295 names[abs] = (rel, exact)
2287 if src != 'b':
2296 if src != 'b':
2288 files.append(abs)
2297 files.append(abs)
2289
2298
2290 # walk target manifest.
2299 # walk target manifest.
2291
2300
2292 def badmatch(path):
2301 def badmatch(path):
2293 if path in names:
2302 if path in names:
2294 return True
2303 return True
2295 path_ = path + '/'
2304 path_ = path + '/'
2296 for f in names:
2305 for f in names:
2297 if f.startswith(path_):
2306 if f.startswith(path_):
2298 return True
2307 return True
2299 return False
2308 return False
2300
2309
2301 for src, abs, rel, exact in cmdutil.walk(repo, pats, opts, node=node,
2310 for src, abs, rel, exact in cmdutil.walk(repo, pats, opts, node=node,
2302 badmatch=badmatch):
2311 badmatch=badmatch):
2303 if abs in names or src == 'b':
2312 if abs in names or src == 'b':
2304 continue
2313 continue
2305 names[abs] = (rel, exact)
2314 names[abs] = (rel, exact)
2306
2315
2307 changes = repo.status(files=files, match=names.has_key)[:4]
2316 changes = repo.status(files=files, match=names.has_key)[:4]
2308 modified, added, removed, deleted = map(dict.fromkeys, changes)
2317 modified, added, removed, deleted = map(dict.fromkeys, changes)
2309
2318
2310 # if f is a rename, also revert the source
2319 # if f is a rename, also revert the source
2311 cwd = repo.getcwd()
2320 cwd = repo.getcwd()
2312 for f in added:
2321 for f in added:
2313 src = repo.dirstate.copied(f)
2322 src = repo.dirstate.copied(f)
2314 if src and src not in names and repo.dirstate[src] == 'r':
2323 if src and src not in names and repo.dirstate[src] == 'r':
2315 removed[src] = None
2324 removed[src] = None
2316 names[src] = (repo.pathto(src, cwd), True)
2325 names[src] = (repo.pathto(src, cwd), True)
2317
2326
2318 def removeforget(abs):
2327 def removeforget(abs):
2319 if repo.dirstate[abs] == 'a':
2328 if repo.dirstate[abs] == 'a':
2320 return _('forgetting %s\n')
2329 return _('forgetting %s\n')
2321 return _('removing %s\n')
2330 return _('removing %s\n')
2322
2331
2323 revert = ([], _('reverting %s\n'))
2332 revert = ([], _('reverting %s\n'))
2324 add = ([], _('adding %s\n'))
2333 add = ([], _('adding %s\n'))
2325 remove = ([], removeforget)
2334 remove = ([], removeforget)
2326 undelete = ([], _('undeleting %s\n'))
2335 undelete = ([], _('undeleting %s\n'))
2327
2336
2328 disptable = (
2337 disptable = (
2329 # dispatch table:
2338 # dispatch table:
2330 # file state
2339 # file state
2331 # action if in target manifest
2340 # action if in target manifest
2332 # action if not in target manifest
2341 # action if not in target manifest
2333 # make backup if in target manifest
2342 # make backup if in target manifest
2334 # make backup if not in target manifest
2343 # make backup if not in target manifest
2335 (modified, revert, remove, True, True),
2344 (modified, revert, remove, True, True),
2336 (added, revert, remove, True, False),
2345 (added, revert, remove, True, False),
2337 (removed, undelete, None, False, False),
2346 (removed, undelete, None, False, False),
2338 (deleted, revert, remove, False, False),
2347 (deleted, revert, remove, False, False),
2339 )
2348 )
2340
2349
2341 entries = names.items()
2350 entries = names.items()
2342 entries.sort()
2351 entries.sort()
2343
2352
2344 for abs, (rel, exact) in entries:
2353 for abs, (rel, exact) in entries:
2345 mfentry = mf.get(abs)
2354 mfentry = mf.get(abs)
2346 target = repo.wjoin(abs)
2355 target = repo.wjoin(abs)
2347 def handle(xlist, dobackup):
2356 def handle(xlist, dobackup):
2348 xlist[0].append(abs)
2357 xlist[0].append(abs)
2349 if dobackup and not opts['no_backup'] and util.lexists(target):
2358 if dobackup and not opts['no_backup'] and util.lexists(target):
2350 bakname = "%s.orig" % rel
2359 bakname = "%s.orig" % rel
2351 ui.note(_('saving current version of %s as %s\n') %
2360 ui.note(_('saving current version of %s as %s\n') %
2352 (rel, bakname))
2361 (rel, bakname))
2353 if not opts.get('dry_run'):
2362 if not opts.get('dry_run'):
2354 util.copyfile(target, bakname)
2363 util.copyfile(target, bakname)
2355 if ui.verbose or not exact:
2364 if ui.verbose or not exact:
2356 msg = xlist[1]
2365 msg = xlist[1]
2357 if not isinstance(msg, basestring):
2366 if not isinstance(msg, basestring):
2358 msg = msg(abs)
2367 msg = msg(abs)
2359 ui.status(msg % rel)
2368 ui.status(msg % rel)
2360 for table, hitlist, misslist, backuphit, backupmiss in disptable:
2369 for table, hitlist, misslist, backuphit, backupmiss in disptable:
2361 if abs not in table: continue
2370 if abs not in table: continue
2362 # file has changed in dirstate
2371 # file has changed in dirstate
2363 if mfentry:
2372 if mfentry:
2364 handle(hitlist, backuphit)
2373 handle(hitlist, backuphit)
2365 elif misslist is not None:
2374 elif misslist is not None:
2366 handle(misslist, backupmiss)
2375 handle(misslist, backupmiss)
2367 break
2376 break
2368 else:
2377 else:
2369 if abs not in repo.dirstate:
2378 if abs not in repo.dirstate:
2370 if mfentry:
2379 if mfentry:
2371 handle(add, True)
2380 handle(add, True)
2372 elif exact:
2381 elif exact:
2373 ui.warn(_('file not managed: %s\n') % rel)
2382 ui.warn(_('file not managed: %s\n') % rel)
2374 continue
2383 continue
2375 # file has not changed in dirstate
2384 # file has not changed in dirstate
2376 if node == parent:
2385 if node == parent:
2377 if exact: ui.warn(_('no changes needed to %s\n') % rel)
2386 if exact: ui.warn(_('no changes needed to %s\n') % rel)
2378 continue
2387 continue
2379 if pmf is None:
2388 if pmf is None:
2380 # only need parent manifest in this unlikely case,
2389 # only need parent manifest in this unlikely case,
2381 # so do not read by default
2390 # so do not read by default
2382 pmf = repo.changectx(parent).manifest()
2391 pmf = repo.changectx(parent).manifest()
2383 if abs in pmf:
2392 if abs in pmf:
2384 if mfentry:
2393 if mfentry:
2385 # if version of file is same in parent and target
2394 # if version of file is same in parent and target
2386 # manifests, do nothing
2395 # manifests, do nothing
2387 if (pmf[abs] != mfentry or
2396 if (pmf[abs] != mfentry or
2388 pmf.flags(abs) != mf.flags(abs)):
2397 pmf.flags(abs) != mf.flags(abs)):
2389 handle(revert, False)
2398 handle(revert, False)
2390 else:
2399 else:
2391 handle(remove, False)
2400 handle(remove, False)
2392
2401
2393 if not opts.get('dry_run'):
2402 if not opts.get('dry_run'):
2394 def checkout(f):
2403 def checkout(f):
2395 fc = ctx[f]
2404 fc = ctx[f]
2396 repo.wwrite(f, fc.data(), fc.fileflags())
2405 repo.wwrite(f, fc.data(), fc.fileflags())
2397
2406
2398 audit_path = util.path_auditor(repo.root)
2407 audit_path = util.path_auditor(repo.root)
2399 for f in remove[0]:
2408 for f in remove[0]:
2400 if repo.dirstate[f] == 'a':
2409 if repo.dirstate[f] == 'a':
2401 repo.dirstate.forget(f)
2410 repo.dirstate.forget(f)
2402 continue
2411 continue
2403 audit_path(f)
2412 audit_path(f)
2404 try:
2413 try:
2405 util.unlink(repo.wjoin(f))
2414 util.unlink(repo.wjoin(f))
2406 except OSError:
2415 except OSError:
2407 pass
2416 pass
2408 repo.dirstate.remove(f)
2417 repo.dirstate.remove(f)
2409
2418
2410 normal = None
2419 normal = None
2411 if node == parent:
2420 if node == parent:
2412 # We're reverting to our parent. If possible, we'd like status
2421 # We're reverting to our parent. If possible, we'd like status
2413 # to report the file as clean. We have to use normallookup for
2422 # to report the file as clean. We have to use normallookup for
2414 # merges to avoid losing information about merged/dirty files.
2423 # merges to avoid losing information about merged/dirty files.
2415 if p2 != nullid:
2424 if p2 != nullid:
2416 normal = repo.dirstate.normallookup
2425 normal = repo.dirstate.normallookup
2417 else:
2426 else:
2418 normal = repo.dirstate.normal
2427 normal = repo.dirstate.normal
2419 for f in revert[0]:
2428 for f in revert[0]:
2420 checkout(f)
2429 checkout(f)
2421 if normal:
2430 if normal:
2422 normal(f)
2431 normal(f)
2423
2432
2424 for f in add[0]:
2433 for f in add[0]:
2425 checkout(f)
2434 checkout(f)
2426 repo.dirstate.add(f)
2435 repo.dirstate.add(f)
2427
2436
2428 normal = repo.dirstate.normallookup
2437 normal = repo.dirstate.normallookup
2429 if node == parent and p2 == nullid:
2438 if node == parent and p2 == nullid:
2430 normal = repo.dirstate.normal
2439 normal = repo.dirstate.normal
2431 for f in undelete[0]:
2440 for f in undelete[0]:
2432 checkout(f)
2441 checkout(f)
2433 normal(f)
2442 normal(f)
2434
2443
2435 finally:
2444 finally:
2436 del wlock
2445 del wlock
2437
2446
2438 def rollback(ui, repo):
2447 def rollback(ui, repo):
2439 """roll back the last transaction
2448 """roll back the last transaction
2440
2449
2441 This command should be used with care. There is only one level of
2450 This command should be used with care. There is only one level of
2442 rollback, and there is no way to undo a rollback. It will also
2451 rollback, and there is no way to undo a rollback. It will also
2443 restore the dirstate at the time of the last transaction, losing
2452 restore the dirstate at the time of the last transaction, losing
2444 any dirstate changes since that time.
2453 any dirstate changes since that time.
2445
2454
2446 Transactions are used to encapsulate the effects of all commands
2455 Transactions are used to encapsulate the effects of all commands
2447 that create new changesets or propagate existing changesets into a
2456 that create new changesets or propagate existing changesets into a
2448 repository. For example, the following commands are transactional,
2457 repository. For example, the following commands are transactional,
2449 and their effects can be rolled back:
2458 and their effects can be rolled back:
2450
2459
2451 commit
2460 commit
2452 import
2461 import
2453 pull
2462 pull
2454 push (with this repository as destination)
2463 push (with this repository as destination)
2455 unbundle
2464 unbundle
2456
2465
2457 This command is not intended for use on public repositories. Once
2466 This command is not intended for use on public repositories. Once
2458 changes are visible for pull by other users, rolling a transaction
2467 changes are visible for pull by other users, rolling a transaction
2459 back locally is ineffective (someone else may already have pulled
2468 back locally is ineffective (someone else may already have pulled
2460 the changes). Furthermore, a race is possible with readers of the
2469 the changes). Furthermore, a race is possible with readers of the
2461 repository; for example an in-progress pull from the repository
2470 repository; for example an in-progress pull from the repository
2462 may fail if a rollback is performed.
2471 may fail if a rollback is performed.
2463 """
2472 """
2464 repo.rollback()
2473 repo.rollback()
2465
2474
2466 def root(ui, repo):
2475 def root(ui, repo):
2467 """print the root (top) of the current working dir
2476 """print the root (top) of the current working dir
2468
2477
2469 Print the root directory of the current repository.
2478 Print the root directory of the current repository.
2470 """
2479 """
2471 ui.write(repo.root + "\n")
2480 ui.write(repo.root + "\n")
2472
2481
2473 def serve(ui, repo, **opts):
2482 def serve(ui, repo, **opts):
2474 """export the repository via HTTP
2483 """export the repository via HTTP
2475
2484
2476 Start a local HTTP repository browser and pull server.
2485 Start a local HTTP repository browser and pull server.
2477
2486
2478 By default, the server logs accesses to stdout and errors to
2487 By default, the server logs accesses to stdout and errors to
2479 stderr. Use the "-A" and "-E" options to log to files.
2488 stderr. Use the "-A" and "-E" options to log to files.
2480 """
2489 """
2481
2490
2482 if opts["stdio"]:
2491 if opts["stdio"]:
2483 if repo is None:
2492 if repo is None:
2484 raise RepoError(_("There is no Mercurial repository here"
2493 raise RepoError(_("There is no Mercurial repository here"
2485 " (.hg not found)"))
2494 " (.hg not found)"))
2486 s = sshserver.sshserver(ui, repo)
2495 s = sshserver.sshserver(ui, repo)
2487 s.serve_forever()
2496 s.serve_forever()
2488
2497
2489 parentui = ui.parentui or ui
2498 parentui = ui.parentui or ui
2490 optlist = ("name templates style address port prefix ipv6"
2499 optlist = ("name templates style address port prefix ipv6"
2491 " accesslog errorlog webdir_conf certificate")
2500 " accesslog errorlog webdir_conf certificate")
2492 for o in optlist.split():
2501 for o in optlist.split():
2493 if opts[o]:
2502 if opts[o]:
2494 parentui.setconfig("web", o, str(opts[o]))
2503 parentui.setconfig("web", o, str(opts[o]))
2495 if (repo is not None) and (repo.ui != parentui):
2504 if (repo is not None) and (repo.ui != parentui):
2496 repo.ui.setconfig("web", o, str(opts[o]))
2505 repo.ui.setconfig("web", o, str(opts[o]))
2497
2506
2498 if repo is None and not ui.config("web", "webdir_conf"):
2507 if repo is None and not ui.config("web", "webdir_conf"):
2499 raise RepoError(_("There is no Mercurial repository here"
2508 raise RepoError(_("There is no Mercurial repository here"
2500 " (.hg not found)"))
2509 " (.hg not found)"))
2501
2510
2502 class service:
2511 class service:
2503 def init(self):
2512 def init(self):
2504 util.set_signal_handler()
2513 util.set_signal_handler()
2505 self.httpd = hgweb.server.create_server(parentui, repo)
2514 self.httpd = hgweb.server.create_server(parentui, repo)
2506
2515
2507 if not ui.verbose: return
2516 if not ui.verbose: return
2508
2517
2509 if self.httpd.prefix:
2518 if self.httpd.prefix:
2510 prefix = self.httpd.prefix.strip('/') + '/'
2519 prefix = self.httpd.prefix.strip('/') + '/'
2511 else:
2520 else:
2512 prefix = ''
2521 prefix = ''
2513
2522
2514 port = ':%d' % self.httpd.port
2523 port = ':%d' % self.httpd.port
2515 if port == ':80':
2524 if port == ':80':
2516 port = ''
2525 port = ''
2517
2526
2518 ui.status(_('listening at http://%s%s/%s (%s:%d)\n') %
2527 ui.status(_('listening at http://%s%s/%s (%s:%d)\n') %
2519 (self.httpd.fqaddr, port, prefix, self.httpd.addr, self.httpd.port))
2528 (self.httpd.fqaddr, port, prefix, self.httpd.addr, self.httpd.port))
2520
2529
2521 def run(self):
2530 def run(self):
2522 self.httpd.serve_forever()
2531 self.httpd.serve_forever()
2523
2532
2524 service = service()
2533 service = service()
2525
2534
2526 cmdutil.service(opts, initfn=service.init, runfn=service.run)
2535 cmdutil.service(opts, initfn=service.init, runfn=service.run)
2527
2536
2528 def status(ui, repo, *pats, **opts):
2537 def status(ui, repo, *pats, **opts):
2529 """show changed files in the working directory
2538 """show changed files in the working directory
2530
2539
2531 Show status of files in the repository. If names are given, only
2540 Show status of files in the repository. If names are given, only
2532 files that match are shown. Files that are clean or ignored or
2541 files that match are shown. Files that are clean or ignored or
2533 source of a copy/move operation, are not listed unless -c (clean),
2542 source of a copy/move operation, are not listed unless -c (clean),
2534 -i (ignored), -C (copies) or -A is given. Unless options described
2543 -i (ignored), -C (copies) or -A is given. Unless options described
2535 with "show only ..." are given, the options -mardu are used.
2544 with "show only ..." are given, the options -mardu are used.
2536
2545
2537 Option -q/--quiet hides untracked (unknown and ignored) files
2546 Option -q/--quiet hides untracked (unknown and ignored) files
2538 unless explicitly requested with -u/--unknown or -i/-ignored.
2547 unless explicitly requested with -u/--unknown or -i/-ignored.
2539
2548
2540 NOTE: status may appear to disagree with diff if permissions have
2549 NOTE: status may appear to disagree with diff if permissions have
2541 changed or a merge has occurred. The standard diff format does not
2550 changed or a merge has occurred. The standard diff format does not
2542 report permission changes and diff only reports changes relative
2551 report permission changes and diff only reports changes relative
2543 to one merge parent.
2552 to one merge parent.
2544
2553
2545 If one revision is given, it is used as the base revision.
2554 If one revision is given, it is used as the base revision.
2546 If two revisions are given, the difference between them is shown.
2555 If two revisions are given, the difference between them is shown.
2547
2556
2548 The codes used to show the status of files are:
2557 The codes used to show the status of files are:
2549 M = modified
2558 M = modified
2550 A = added
2559 A = added
2551 R = removed
2560 R = removed
2552 C = clean
2561 C = clean
2553 ! = deleted, but still tracked
2562 ! = deleted, but still tracked
2554 ? = not tracked
2563 ? = not tracked
2555 I = ignored
2564 I = ignored
2556 = the previous added file was copied from here
2565 = the previous added file was copied from here
2557 """
2566 """
2558
2567
2559 all = opts['all']
2568 all = opts['all']
2560 node1, node2 = cmdutil.revpair(repo, opts.get('rev'))
2569 node1, node2 = cmdutil.revpair(repo, opts.get('rev'))
2561
2570
2562 files, matchfn, anypats = cmdutil.matchpats(repo, pats, opts)
2571 files, matchfn, anypats = cmdutil.matchpats(repo, pats, opts)
2563 cwd = (pats and repo.getcwd()) or ''
2572 cwd = (pats and repo.getcwd()) or ''
2564 modified, added, removed, deleted, unknown, ignored, clean = [
2573 modified, added, removed, deleted, unknown, ignored, clean = [
2565 n for n in repo.status(node1=node1, node2=node2, files=files,
2574 n for n in repo.status(node1=node1, node2=node2, files=files,
2566 match=matchfn,
2575 match=matchfn,
2567 list_ignored=opts['ignored']
2576 list_ignored=opts['ignored']
2568 or all and not ui.quiet,
2577 or all and not ui.quiet,
2569 list_clean=opts['clean'] or all,
2578 list_clean=opts['clean'] or all,
2570 list_unknown=opts['unknown']
2579 list_unknown=opts['unknown']
2571 or not (ui.quiet or
2580 or not (ui.quiet or
2572 opts['modified'] or
2581 opts['modified'] or
2573 opts['added'] or
2582 opts['added'] or
2574 opts['removed'] or
2583 opts['removed'] or
2575 opts['deleted'] or
2584 opts['deleted'] or
2576 opts['ignored']))]
2585 opts['ignored']))]
2577
2586
2578 changetypes = (('modified', 'M', modified),
2587 changetypes = (('modified', 'M', modified),
2579 ('added', 'A', added),
2588 ('added', 'A', added),
2580 ('removed', 'R', removed),
2589 ('removed', 'R', removed),
2581 ('deleted', '!', deleted),
2590 ('deleted', '!', deleted),
2582 ('unknown', '?', unknown),
2591 ('unknown', '?', unknown),
2583 ('ignored', 'I', ignored))
2592 ('ignored', 'I', ignored))
2584
2593
2585 explicit_changetypes = changetypes + (('clean', 'C', clean),)
2594 explicit_changetypes = changetypes + (('clean', 'C', clean),)
2586
2595
2587 copy = {}
2596 copy = {}
2588 showcopy = {}
2597 showcopy = {}
2589 if ((all or opts.get('copies')) and not opts.get('no_status')):
2598 if ((all or opts.get('copies')) and not opts.get('no_status')):
2590 if opts.get('rev') == []:
2599 if opts.get('rev') == []:
2591 # fast path, more correct with merge parents
2600 # fast path, more correct with merge parents
2592 showcopy = copy = repo.dirstate.copies().copy()
2601 showcopy = copy = repo.dirstate.copies().copy()
2593 else:
2602 else:
2594 ctxn = repo.changectx(nullid)
2603 ctxn = repo.changectx(nullid)
2595 ctx1 = repo.changectx(node1)
2604 ctx1 = repo.changectx(node1)
2596 ctx2 = repo.changectx(node2)
2605 ctx2 = repo.changectx(node2)
2597 if node2 is None:
2606 if node2 is None:
2598 ctx2 = repo.workingctx()
2607 ctx2 = repo.workingctx()
2599 copy, diverge = copies.copies(repo, ctx1, ctx2, ctxn)
2608 copy, diverge = copies.copies(repo, ctx1, ctx2, ctxn)
2600 for k, v in copy.items():
2609 for k, v in copy.items():
2601 copy[v] = k
2610 copy[v] = k
2602
2611
2603 end = opts['print0'] and '\0' or '\n'
2612 end = opts['print0'] and '\0' or '\n'
2604
2613
2605 for opt, char, changes in ([ct for ct in explicit_changetypes
2614 for opt, char, changes in ([ct for ct in explicit_changetypes
2606 if all or opts[ct[0]]]
2615 if all or opts[ct[0]]]
2607 or changetypes):
2616 or changetypes):
2608
2617
2609 if opts['no_status']:
2618 if opts['no_status']:
2610 format = "%%s%s" % end
2619 format = "%%s%s" % end
2611 else:
2620 else:
2612 format = "%s %%s%s" % (char, end)
2621 format = "%s %%s%s" % (char, end)
2613
2622
2614 for f in changes:
2623 for f in changes:
2615 ui.write(format % repo.pathto(f, cwd))
2624 ui.write(format % repo.pathto(f, cwd))
2616 if f in copy and (f in added or f in showcopy):
2625 if f in copy and (f in added or f in showcopy):
2617 ui.write(' %s%s' % (repo.pathto(copy[f], cwd), end))
2626 ui.write(' %s%s' % (repo.pathto(copy[f], cwd), end))
2618
2627
2619 def tag(ui, repo, name1, *names, **opts):
2628 def tag(ui, repo, name1, *names, **opts):
2620 """add one or more tags for the current or given revision
2629 """add one or more tags for the current or given revision
2621
2630
2622 Name a particular revision using <name>.
2631 Name a particular revision using <name>.
2623
2632
2624 Tags are used to name particular revisions of the repository and are
2633 Tags are used to name particular revisions of the repository and are
2625 very useful to compare different revisions, to go back to significant
2634 very useful to compare different revisions, to go back to significant
2626 earlier versions or to mark branch points as releases, etc.
2635 earlier versions or to mark branch points as releases, etc.
2627
2636
2628 If no revision is given, the parent of the working directory is used,
2637 If no revision is given, the parent of the working directory is used,
2629 or tip if no revision is checked out.
2638 or tip if no revision is checked out.
2630
2639
2631 To facilitate version control, distribution, and merging of tags,
2640 To facilitate version control, distribution, and merging of tags,
2632 they are stored as a file named ".hgtags" which is managed
2641 they are stored as a file named ".hgtags" which is managed
2633 similarly to other project files and can be hand-edited if
2642 similarly to other project files and can be hand-edited if
2634 necessary. The file '.hg/localtags' is used for local tags (not
2643 necessary. The file '.hg/localtags' is used for local tags (not
2635 shared among repositories).
2644 shared among repositories).
2636
2645
2637 See 'hg help dates' for a list of formats valid for -d/--date.
2646 See 'hg help dates' for a list of formats valid for -d/--date.
2638 """
2647 """
2639
2648
2640 rev_ = None
2649 rev_ = None
2641 names = (name1,) + names
2650 names = (name1,) + names
2642 if len(names) != len(dict.fromkeys(names)):
2651 if len(names) != len(dict.fromkeys(names)):
2643 raise util.Abort(_('tag names must be unique'))
2652 raise util.Abort(_('tag names must be unique'))
2644 for n in names:
2653 for n in names:
2645 if n in ['tip', '.', 'null']:
2654 if n in ['tip', '.', 'null']:
2646 raise util.Abort(_('the name \'%s\' is reserved') % n)
2655 raise util.Abort(_('the name \'%s\' is reserved') % n)
2647 if opts['rev'] and opts['remove']:
2656 if opts['rev'] and opts['remove']:
2648 raise util.Abort(_("--rev and --remove are incompatible"))
2657 raise util.Abort(_("--rev and --remove are incompatible"))
2649 if opts['rev']:
2658 if opts['rev']:
2650 rev_ = opts['rev']
2659 rev_ = opts['rev']
2651 message = opts['message']
2660 message = opts['message']
2652 if opts['remove']:
2661 if opts['remove']:
2653 expectedtype = opts['local'] and 'local' or 'global'
2662 expectedtype = opts['local'] and 'local' or 'global'
2654 for n in names:
2663 for n in names:
2655 if not repo.tagtype(n):
2664 if not repo.tagtype(n):
2656 raise util.Abort(_('tag \'%s\' does not exist') % n)
2665 raise util.Abort(_('tag \'%s\' does not exist') % n)
2657 if repo.tagtype(n) != expectedtype:
2666 if repo.tagtype(n) != expectedtype:
2658 raise util.Abort(_('tag \'%s\' is not a %s tag') %
2667 raise util.Abort(_('tag \'%s\' is not a %s tag') %
2659 (n, expectedtype))
2668 (n, expectedtype))
2660 rev_ = nullid
2669 rev_ = nullid
2661 if not message:
2670 if not message:
2662 message = _('Removed tag %s') % ', '.join(names)
2671 message = _('Removed tag %s') % ', '.join(names)
2663 elif not opts['force']:
2672 elif not opts['force']:
2664 for n in names:
2673 for n in names:
2665 if n in repo.tags():
2674 if n in repo.tags():
2666 raise util.Abort(_('tag \'%s\' already exists '
2675 raise util.Abort(_('tag \'%s\' already exists '
2667 '(use -f to force)') % n)
2676 '(use -f to force)') % n)
2668 if not rev_ and repo.dirstate.parents()[1] != nullid:
2677 if not rev_ and repo.dirstate.parents()[1] != nullid:
2669 raise util.Abort(_('uncommitted merge - please provide a '
2678 raise util.Abort(_('uncommitted merge - please provide a '
2670 'specific revision'))
2679 'specific revision'))
2671 r = repo.changectx(rev_).node()
2680 r = repo.changectx(rev_).node()
2672
2681
2673 if not message:
2682 if not message:
2674 message = (_('Added tag %s for changeset %s') %
2683 message = (_('Added tag %s for changeset %s') %
2675 (', '.join(names), short(r)))
2684 (', '.join(names), short(r)))
2676
2685
2677 date = opts.get('date')
2686 date = opts.get('date')
2678 if date:
2687 if date:
2679 date = util.parsedate(date)
2688 date = util.parsedate(date)
2680
2689
2681 repo.tag(names, r, message, opts['local'], opts['user'], date)
2690 repo.tag(names, r, message, opts['local'], opts['user'], date)
2682
2691
2683 def tags(ui, repo):
2692 def tags(ui, repo):
2684 """list repository tags
2693 """list repository tags
2685
2694
2686 List the repository tags.
2695 List the repository tags.
2687
2696
2688 This lists both regular and local tags. When the -v/--verbose switch
2697 This lists both regular and local tags. When the -v/--verbose switch
2689 is used, a third column "local" is printed for local tags.
2698 is used, a third column "local" is printed for local tags.
2690 """
2699 """
2691
2700
2692 l = repo.tagslist()
2701 l = repo.tagslist()
2693 l.reverse()
2702 l.reverse()
2694 hexfunc = ui.debugflag and hex or short
2703 hexfunc = ui.debugflag and hex or short
2695 tagtype = ""
2704 tagtype = ""
2696
2705
2697 for t, n in l:
2706 for t, n in l:
2698 if ui.quiet:
2707 if ui.quiet:
2699 ui.write("%s\n" % t)
2708 ui.write("%s\n" % t)
2700 continue
2709 continue
2701
2710
2702 try:
2711 try:
2703 hn = hexfunc(n)
2712 hn = hexfunc(n)
2704 r = "%5d:%s" % (repo.changelog.rev(n), hn)
2713 r = "%5d:%s" % (repo.changelog.rev(n), hn)
2705 except revlog.LookupError:
2714 except revlog.LookupError:
2706 r = " ?:%s" % hn
2715 r = " ?:%s" % hn
2707 else:
2716 else:
2708 spaces = " " * (30 - util.locallen(t))
2717 spaces = " " * (30 - util.locallen(t))
2709 if ui.verbose:
2718 if ui.verbose:
2710 if repo.tagtype(t) == 'local':
2719 if repo.tagtype(t) == 'local':
2711 tagtype = " local"
2720 tagtype = " local"
2712 else:
2721 else:
2713 tagtype = ""
2722 tagtype = ""
2714 ui.write("%s%s %s%s\n" % (t, spaces, r, tagtype))
2723 ui.write("%s%s %s%s\n" % (t, spaces, r, tagtype))
2715
2724
2716 def tip(ui, repo, **opts):
2725 def tip(ui, repo, **opts):
2717 """show the tip revision
2726 """show the tip revision
2718
2727
2719 The tip revision (usually just called the tip) is the most
2728 The tip revision (usually just called the tip) is the most
2720 recently added changeset in the repository, the most recently
2729 recently added changeset in the repository, the most recently
2721 changed head.
2730 changed head.
2722
2731
2723 If you have just made a commit, that commit will be the tip. If
2732 If you have just made a commit, that commit will be the tip. If
2724 you have just pulled changes from another repository, the tip of
2733 you have just pulled changes from another repository, the tip of
2725 that repository becomes the current tip. The "tip" tag is special
2734 that repository becomes the current tip. The "tip" tag is special
2726 and cannot be renamed or assigned to a different changeset.
2735 and cannot be renamed or assigned to a different changeset.
2727 """
2736 """
2728 cmdutil.show_changeset(ui, repo, opts).show(nullrev+repo.changelog.count())
2737 cmdutil.show_changeset(ui, repo, opts).show(nullrev+repo.changelog.count())
2729
2738
2730 def unbundle(ui, repo, fname1, *fnames, **opts):
2739 def unbundle(ui, repo, fname1, *fnames, **opts):
2731 """apply one or more changegroup files
2740 """apply one or more changegroup files
2732
2741
2733 Apply one or more compressed changegroup files generated by the
2742 Apply one or more compressed changegroup files generated by the
2734 bundle command.
2743 bundle command.
2735 """
2744 """
2736 fnames = (fname1,) + fnames
2745 fnames = (fname1,) + fnames
2737
2746
2738 lock = None
2747 lock = None
2739 try:
2748 try:
2740 lock = repo.lock()
2749 lock = repo.lock()
2741 for fname in fnames:
2750 for fname in fnames:
2742 if os.path.exists(fname):
2751 if os.path.exists(fname):
2743 f = open(fname, "rb")
2752 f = open(fname, "rb")
2744 else:
2753 else:
2745 f = urllib.urlopen(fname)
2754 f = urllib.urlopen(fname)
2746 gen = changegroup.readbundle(f, fname)
2755 gen = changegroup.readbundle(f, fname)
2747 modheads = repo.addchangegroup(gen, 'unbundle', 'bundle:' + fname)
2756 modheads = repo.addchangegroup(gen, 'unbundle', 'bundle:' + fname)
2748 finally:
2757 finally:
2749 del lock
2758 del lock
2750
2759
2751 return postincoming(ui, repo, modheads, opts['update'], None)
2760 return postincoming(ui, repo, modheads, opts['update'], None)
2752
2761
2753 def update(ui, repo, node=None, rev=None, clean=False, date=None):
2762 def update(ui, repo, node=None, rev=None, clean=False, date=None):
2754 """update working directory
2763 """update working directory
2755
2764
2756 Update the working directory to the specified revision, or the
2765 Update the working directory to the specified revision, or the
2757 tip of the current branch if none is specified.
2766 tip of the current branch if none is specified.
2758 See 'hg help dates' for a list of formats valid for -d/--date.
2767 See 'hg help dates' for a list of formats valid for -d/--date.
2759
2768
2760 If there are no outstanding changes in the working directory, the
2769 If there are no outstanding changes in the working directory, the
2761 result is the requested version.
2770 result is the requested version.
2762
2771
2763 If the requested version is a descendant of the working directory
2772 If the requested version is a descendant of the working directory
2764 and there are outstanding changes, those changes will be merged
2773 and there are outstanding changes, those changes will be merged
2765 into the result.
2774 into the result.
2766
2775
2767 By default, update will refuse to run if there are outstanding
2776 By default, update will refuse to run if there are outstanding
2768 changes and the update spans branches.
2777 changes and the update spans branches.
2769 """
2778 """
2770 if rev and node:
2779 if rev and node:
2771 raise util.Abort(_("please specify just one revision"))
2780 raise util.Abort(_("please specify just one revision"))
2772
2781
2773 if not rev:
2782 if not rev:
2774 rev = node
2783 rev = node
2775
2784
2776 if date:
2785 if date:
2777 if rev:
2786 if rev:
2778 raise util.Abort(_("you can't specify a revision and a date"))
2787 raise util.Abort(_("you can't specify a revision and a date"))
2779 rev = cmdutil.finddate(ui, repo, date)
2788 rev = cmdutil.finddate(ui, repo, date)
2780
2789
2781 if clean:
2790 if clean:
2782 return hg.clean(repo, rev)
2791 return hg.clean(repo, rev)
2783 else:
2792 else:
2784 return hg.update(repo, rev)
2793 return hg.update(repo, rev)
2785
2794
2786 def verify(ui, repo):
2795 def verify(ui, repo):
2787 """verify the integrity of the repository
2796 """verify the integrity of the repository
2788
2797
2789 Verify the integrity of the current repository.
2798 Verify the integrity of the current repository.
2790
2799
2791 This will perform an extensive check of the repository's
2800 This will perform an extensive check of the repository's
2792 integrity, validating the hashes and checksums of each entry in
2801 integrity, validating the hashes and checksums of each entry in
2793 the changelog, manifest, and tracked files, as well as the
2802 the changelog, manifest, and tracked files, as well as the
2794 integrity of their crosslinks and indices.
2803 integrity of their crosslinks and indices.
2795 """
2804 """
2796 return hg.verify(repo)
2805 return hg.verify(repo)
2797
2806
2798 def version_(ui):
2807 def version_(ui):
2799 """output version and copyright information"""
2808 """output version and copyright information"""
2800 ui.write(_("Mercurial Distributed SCM (version %s)\n")
2809 ui.write(_("Mercurial Distributed SCM (version %s)\n")
2801 % version.get_version())
2810 % version.get_version())
2802 ui.status(_(
2811 ui.status(_(
2803 "\nCopyright (C) 2005-2008 Matt Mackall <mpm@selenic.com> and others\n"
2812 "\nCopyright (C) 2005-2008 Matt Mackall <mpm@selenic.com> and others\n"
2804 "This is free software; see the source for copying conditions. "
2813 "This is free software; see the source for copying conditions. "
2805 "There is NO\nwarranty; "
2814 "There is NO\nwarranty; "
2806 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
2815 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
2807 ))
2816 ))
2808
2817
2809 # Command options and aliases are listed here, alphabetically
2818 # Command options and aliases are listed here, alphabetically
2810
2819
2811 globalopts = [
2820 globalopts = [
2812 ('R', 'repository', '',
2821 ('R', 'repository', '',
2813 _('repository root directory or symbolic path name')),
2822 _('repository root directory or symbolic path name')),
2814 ('', 'cwd', '', _('change working directory')),
2823 ('', 'cwd', '', _('change working directory')),
2815 ('y', 'noninteractive', None,
2824 ('y', 'noninteractive', None,
2816 _('do not prompt, assume \'yes\' for any required answers')),
2825 _('do not prompt, assume \'yes\' for any required answers')),
2817 ('q', 'quiet', None, _('suppress output')),
2826 ('q', 'quiet', None, _('suppress output')),
2818 ('v', 'verbose', None, _('enable additional output')),
2827 ('v', 'verbose', None, _('enable additional output')),
2819 ('', 'config', [], _('set/override config option')),
2828 ('', 'config', [], _('set/override config option')),
2820 ('', 'debug', None, _('enable debugging output')),
2829 ('', 'debug', None, _('enable debugging output')),
2821 ('', 'debugger', None, _('start debugger')),
2830 ('', 'debugger', None, _('start debugger')),
2822 ('', 'encoding', util._encoding, _('set the charset encoding')),
2831 ('', 'encoding', util._encoding, _('set the charset encoding')),
2823 ('', 'encodingmode', util._encodingmode, _('set the charset encoding mode')),
2832 ('', 'encodingmode', util._encodingmode, _('set the charset encoding mode')),
2824 ('', 'lsprof', None, _('print improved command execution profile')),
2833 ('', 'lsprof', None, _('print improved command execution profile')),
2825 ('', 'traceback', None, _('print traceback on exception')),
2834 ('', 'traceback', None, _('print traceback on exception')),
2826 ('', 'time', None, _('time how long the command takes')),
2835 ('', 'time', None, _('time how long the command takes')),
2827 ('', 'profile', None, _('print command execution profile')),
2836 ('', 'profile', None, _('print command execution profile')),
2828 ('', 'version', None, _('output version information and exit')),
2837 ('', 'version', None, _('output version information and exit')),
2829 ('h', 'help', None, _('display help and exit')),
2838 ('h', 'help', None, _('display help and exit')),
2830 ]
2839 ]
2831
2840
2832 dryrunopts = [('n', 'dry-run', None,
2841 dryrunopts = [('n', 'dry-run', None,
2833 _('do not perform actions, just print output'))]
2842 _('do not perform actions, just print output'))]
2834
2843
2835 remoteopts = [
2844 remoteopts = [
2836 ('e', 'ssh', '', _('specify ssh command to use')),
2845 ('e', 'ssh', '', _('specify ssh command to use')),
2837 ('', 'remotecmd', '', _('specify hg command to run on the remote side')),
2846 ('', 'remotecmd', '', _('specify hg command to run on the remote side')),
2838 ]
2847 ]
2839
2848
2840 walkopts = [
2849 walkopts = [
2841 ('I', 'include', [], _('include names matching the given patterns')),
2850 ('I', 'include', [], _('include names matching the given patterns')),
2842 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2851 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2843 ]
2852 ]
2844
2853
2845 commitopts = [
2854 commitopts = [
2846 ('m', 'message', '', _('use <text> as commit message')),
2855 ('m', 'message', '', _('use <text> as commit message')),
2847 ('l', 'logfile', '', _('read commit message from <file>')),
2856 ('l', 'logfile', '', _('read commit message from <file>')),
2848 ]
2857 ]
2849
2858
2850 commitopts2 = [
2859 commitopts2 = [
2851 ('d', 'date', '', _('record datecode as commit date')),
2860 ('d', 'date', '', _('record datecode as commit date')),
2852 ('u', 'user', '', _('record user as committer')),
2861 ('u', 'user', '', _('record user as committer')),
2853 ]
2862 ]
2854
2863
2855 templateopts = [
2864 templateopts = [
2856 ('', 'style', '', _('display using template map file')),
2865 ('', 'style', '', _('display using template map file')),
2857 ('', 'template', '', _('display with template')),
2866 ('', 'template', '', _('display with template')),
2858 ]
2867 ]
2859
2868
2860 logopts = [
2869 logopts = [
2861 ('p', 'patch', None, _('show patch')),
2870 ('p', 'patch', None, _('show patch')),
2862 ('l', 'limit', '', _('limit number of changes displayed')),
2871 ('l', 'limit', '', _('limit number of changes displayed')),
2863 ('M', 'no-merges', None, _('do not show merges')),
2872 ('M', 'no-merges', None, _('do not show merges')),
2864 ] + templateopts
2873 ] + templateopts
2865
2874
2866 table = {
2875 table = {
2867 "^add": (add, walkopts + dryrunopts, _('hg add [OPTION]... [FILE]...')),
2876 "^add": (add, walkopts + dryrunopts, _('hg add [OPTION]... [FILE]...')),
2868 "addremove":
2877 "addremove":
2869 (addremove,
2878 (addremove,
2870 [('s', 'similarity', '',
2879 [('s', 'similarity', '',
2871 _('guess renamed files by similarity (0<=s<=100)')),
2880 _('guess renamed files by similarity (0<=s<=100)')),
2872 ] + walkopts + dryrunopts,
2881 ] + walkopts + dryrunopts,
2873 _('hg addremove [OPTION]... [FILE]...')),
2882 _('hg addremove [OPTION]... [FILE]...')),
2874 "^annotate|blame":
2883 "^annotate|blame":
2875 (annotate,
2884 (annotate,
2876 [('r', 'rev', '', _('annotate the specified revision')),
2885 [('r', 'rev', '', _('annotate the specified revision')),
2877 ('f', 'follow', None, _('follow file copies and renames')),
2886 ('f', 'follow', None, _('follow file copies and renames')),
2878 ('a', 'text', None, _('treat all files as text')),
2887 ('a', 'text', None, _('treat all files as text')),
2879 ('u', 'user', None, _('list the author (long with -v)')),
2888 ('u', 'user', None, _('list the author (long with -v)')),
2880 ('d', 'date', None, _('list the date (short with -q)')),
2889 ('d', 'date', None, _('list the date (short with -q)')),
2881 ('n', 'number', None, _('list the revision number (default)')),
2890 ('n', 'number', None, _('list the revision number (default)')),
2882 ('c', 'changeset', None, _('list the changeset')),
2891 ('c', 'changeset', None, _('list the changeset')),
2883 ('l', 'line-number', None,
2892 ('l', 'line-number', None,
2884 _('show line number at the first appearance'))
2893 _('show line number at the first appearance'))
2885 ] + walkopts,
2894 ] + walkopts,
2886 _('hg annotate [-r REV] [-f] [-a] [-u] [-d] [-n] [-c] [-l] FILE...')),
2895 _('hg annotate [-r REV] [-f] [-a] [-u] [-d] [-n] [-c] [-l] FILE...')),
2887 "archive":
2896 "archive":
2888 (archive,
2897 (archive,
2889 [('', 'no-decode', None, _('do not pass files through decoders')),
2898 [('', 'no-decode', None, _('do not pass files through decoders')),
2890 ('p', 'prefix', '', _('directory prefix for files in archive')),
2899 ('p', 'prefix', '', _('directory prefix for files in archive')),
2891 ('r', 'rev', '', _('revision to distribute')),
2900 ('r', 'rev', '', _('revision to distribute')),
2892 ('t', 'type', '', _('type of distribution to create')),
2901 ('t', 'type', '', _('type of distribution to create')),
2893 ] + walkopts,
2902 ] + walkopts,
2894 _('hg archive [OPTION]... DEST')),
2903 _('hg archive [OPTION]... DEST')),
2895 "backout":
2904 "backout":
2896 (backout,
2905 (backout,
2897 [('', 'merge', None,
2906 [('', 'merge', None,
2898 _('merge with old dirstate parent after backout')),
2907 _('merge with old dirstate parent after backout')),
2899 ('', 'parent', '', _('parent to choose when backing out merge')),
2908 ('', 'parent', '', _('parent to choose when backing out merge')),
2900 ('r', 'rev', '', _('revision to backout')),
2909 ('r', 'rev', '', _('revision to backout')),
2901 ] + walkopts + commitopts + commitopts2,
2910 ] + walkopts + commitopts + commitopts2,
2902 _('hg backout [OPTION]... [-r] REV')),
2911 _('hg backout [OPTION]... [-r] REV')),
2903 "bisect":
2912 "bisect":
2904 (bisect,
2913 (bisect,
2905 [('r', 'reset', False, _('reset bisect state')),
2914 [('r', 'reset', False, _('reset bisect state')),
2906 ('g', 'good', False, _('mark changeset good')),
2915 ('g', 'good', False, _('mark changeset good')),
2907 ('b', 'bad', False, _('mark changeset bad')),
2916 ('b', 'bad', False, _('mark changeset bad')),
2908 ('s', 'skip', False, _('skip testing changeset')),
2917 ('s', 'skip', False, _('skip testing changeset')),
2909 ('U', 'noupdate', False, _('do not update to target'))],
2918 ('U', 'noupdate', False, _('do not update to target'))],
2910 _("hg bisect [-gbsr] [REV]")),
2919 _("hg bisect [-gbsr] [REV]")),
2911 "branch":
2920 "branch":
2912 (branch,
2921 (branch,
2913 [('f', 'force', None,
2922 [('f', 'force', None,
2914 _('set branch name even if it shadows an existing branch'))],
2923 _('set branch name even if it shadows an existing branch'))],
2915 _('hg branch [-f] [NAME]')),
2924 _('hg branch [-f] [NAME]')),
2916 "branches":
2925 "branches":
2917 (branches,
2926 (branches,
2918 [('a', 'active', False,
2927 [('a', 'active', False,
2919 _('show only branches that have unmerged heads'))],
2928 _('show only branches that have unmerged heads'))],
2920 _('hg branches [-a]')),
2929 _('hg branches [-a]')),
2921 "bundle":
2930 "bundle":
2922 (bundle,
2931 (bundle,
2923 [('f', 'force', None,
2932 [('f', 'force', None,
2924 _('run even when remote repository is unrelated')),
2933 _('run even when remote repository is unrelated')),
2925 ('r', 'rev', [],
2934 ('r', 'rev', [],
2926 _('a changeset up to which you would like to bundle')),
2935 _('a changeset up to which you would like to bundle')),
2927 ('', 'base', [],
2936 ('', 'base', [],
2928 _('a base changeset to specify instead of a destination')),
2937 _('a base changeset to specify instead of a destination')),
2929 ('a', 'all', None,
2938 ('a', 'all', None,
2930 _('bundle all changesets in the repository')),
2939 _('bundle all changesets in the repository')),
2931 ] + remoteopts,
2940 ] + remoteopts,
2932 _('hg bundle [-f] [-a] [-r REV]... [--base REV]... FILE [DEST]')),
2941 _('hg bundle [-f] [-a] [-r REV]... [--base REV]... FILE [DEST]')),
2933 "cat":
2942 "cat":
2934 (cat,
2943 (cat,
2935 [('o', 'output', '', _('print output to file with formatted name')),
2944 [('o', 'output', '', _('print output to file with formatted name')),
2936 ('r', 'rev', '', _('print the given revision')),
2945 ('r', 'rev', '', _('print the given revision')),
2937 ('', 'decode', None, _('apply any matching decode filter')),
2946 ('', 'decode', None, _('apply any matching decode filter')),
2938 ] + walkopts,
2947 ] + walkopts,
2939 _('hg cat [OPTION]... FILE...')),
2948 _('hg cat [OPTION]... FILE...')),
2940 "^clone":
2949 "^clone":
2941 (clone,
2950 (clone,
2942 [('U', 'noupdate', None, _('do not update the new working directory')),
2951 [('U', 'noupdate', None, _('do not update the new working directory')),
2943 ('r', 'rev', [],
2952 ('r', 'rev', [],
2944 _('a changeset you would like to have after cloning')),
2953 _('a changeset you would like to have after cloning')),
2945 ('', 'pull', None, _('use pull protocol to copy metadata')),
2954 ('', 'pull', None, _('use pull protocol to copy metadata')),
2946 ('', 'uncompressed', None,
2955 ('', 'uncompressed', None,
2947 _('use uncompressed transfer (fast over LAN)')),
2956 _('use uncompressed transfer (fast over LAN)')),
2948 ] + remoteopts,
2957 ] + remoteopts,
2949 _('hg clone [OPTION]... SOURCE [DEST]')),
2958 _('hg clone [OPTION]... SOURCE [DEST]')),
2950 "^commit|ci":
2959 "^commit|ci":
2951 (commit,
2960 (commit,
2952 [('A', 'addremove', None,
2961 [('A', 'addremove', None,
2953 _('mark new/missing files as added/removed before committing')),
2962 _('mark new/missing files as added/removed before committing')),
2954 ] + walkopts + commitopts + commitopts2,
2963 ] + walkopts + commitopts + commitopts2,
2955 _('hg commit [OPTION]... [FILE]...')),
2964 _('hg commit [OPTION]... [FILE]...')),
2956 "copy|cp":
2965 "copy|cp":
2957 (copy,
2966 (copy,
2958 [('A', 'after', None, _('record a copy that has already occurred')),
2967 [('A', 'after', None, _('record a copy that has already occurred')),
2959 ('f', 'force', None,
2968 ('f', 'force', None,
2960 _('forcibly copy over an existing managed file')),
2969 _('forcibly copy over an existing managed file')),
2961 ] + walkopts + dryrunopts,
2970 ] + walkopts + dryrunopts,
2962 _('hg copy [OPTION]... [SOURCE]... DEST')),
2971 _('hg copy [OPTION]... [SOURCE]... DEST')),
2963 "debugancestor": (debugancestor, [],
2972 "debugancestor": (debugancestor, [],
2964 _('hg debugancestor [INDEX] REV1 REV2')),
2973 _('hg debugancestor [INDEX] REV1 REV2')),
2965 "debugcheckstate": (debugcheckstate, [], _('hg debugcheckstate')),
2974 "debugcheckstate": (debugcheckstate, [], _('hg debugcheckstate')),
2966 "debugcomplete":
2975 "debugcomplete":
2967 (debugcomplete,
2976 (debugcomplete,
2968 [('o', 'options', None, _('show the command options'))],
2977 [('o', 'options', None, _('show the command options'))],
2969 _('hg debugcomplete [-o] CMD')),
2978 _('hg debugcomplete [-o] CMD')),
2970 "debugdate":
2979 "debugdate":
2971 (debugdate,
2980 (debugdate,
2972 [('e', 'extended', None, _('try extended date formats'))],
2981 [('e', 'extended', None, _('try extended date formats'))],
2973 _('hg debugdate [-e] DATE [RANGE]')),
2982 _('hg debugdate [-e] DATE [RANGE]')),
2974 "debugdata": (debugdata, [], _('hg debugdata FILE REV')),
2983 "debugdata": (debugdata, [], _('hg debugdata FILE REV')),
2975 "debugfsinfo": (debugfsinfo, [], _('hg debugfsinfo [PATH]')),
2984 "debugfsinfo": (debugfsinfo, [], _('hg debugfsinfo [PATH]')),
2976 "debugindex": (debugindex, [], _('hg debugindex FILE')),
2985 "debugindex": (debugindex, [], _('hg debugindex FILE')),
2977 "debugindexdot": (debugindexdot, [], _('hg debugindexdot FILE')),
2986 "debugindexdot": (debugindexdot, [], _('hg debugindexdot FILE')),
2978 "debuginstall": (debuginstall, [], _('hg debuginstall')),
2987 "debuginstall": (debuginstall, [], _('hg debuginstall')),
2979 "debugrawcommit|rawcommit":
2988 "debugrawcommit|rawcommit":
2980 (rawcommit,
2989 (rawcommit,
2981 [('p', 'parent', [], _('parent')),
2990 [('p', 'parent', [], _('parent')),
2982 ('F', 'files', '', _('file list'))
2991 ('F', 'files', '', _('file list'))
2983 ] + commitopts + commitopts2,
2992 ] + commitopts + commitopts2,
2984 _('hg debugrawcommit [OPTION]... [FILE]...')),
2993 _('hg debugrawcommit [OPTION]... [FILE]...')),
2985 "debugrebuildstate":
2994 "debugrebuildstate":
2986 (debugrebuildstate,
2995 (debugrebuildstate,
2987 [('r', 'rev', '', _('revision to rebuild to'))],
2996 [('r', 'rev', '', _('revision to rebuild to'))],
2988 _('hg debugrebuildstate [-r REV] [REV]')),
2997 _('hg debugrebuildstate [-r REV] [REV]')),
2989 "debugrename":
2998 "debugrename":
2990 (debugrename,
2999 (debugrename,
2991 [('r', 'rev', '', _('revision to debug'))],
3000 [('r', 'rev', '', _('revision to debug'))],
2992 _('hg debugrename [-r REV] FILE')),
3001 _('hg debugrename [-r REV] FILE')),
2993 "debugsetparents":
3002 "debugsetparents":
2994 (debugsetparents,
3003 (debugsetparents,
2995 [],
3004 [],
2996 _('hg debugsetparents REV1 [REV2]')),
3005 _('hg debugsetparents REV1 [REV2]')),
2997 "debugstate":
3006 "debugstate":
2998 (debugstate,
3007 (debugstate,
2999 [('', 'nodates', None, _('do not display the saved mtime'))],
3008 [('', 'nodates', None, _('do not display the saved mtime'))],
3000 _('hg debugstate [OPTS]')),
3009 _('hg debugstate [OPTS]')),
3001 "debugwalk": (debugwalk, walkopts, _('hg debugwalk [OPTION]... [FILE]...')),
3010 "debugwalk": (debugwalk, walkopts, _('hg debugwalk [OPTION]... [FILE]...')),
3002 "^diff":
3011 "^diff":
3003 (diff,
3012 (diff,
3004 [('r', 'rev', [], _('revision')),
3013 [('r', 'rev', [], _('revision')),
3005 ('a', 'text', None, _('treat all files as text')),
3014 ('a', 'text', None, _('treat all files as text')),
3006 ('p', 'show-function', None,
3015 ('p', 'show-function', None,
3007 _('show which function each change is in')),
3016 _('show which function each change is in')),
3008 ('g', 'git', None, _('use git extended diff format')),
3017 ('g', 'git', None, _('use git extended diff format')),
3009 ('', 'nodates', None, _("don't include dates in diff headers")),
3018 ('', 'nodates', None, _("don't include dates in diff headers")),
3010 ('w', 'ignore-all-space', None,
3019 ('w', 'ignore-all-space', None,
3011 _('ignore white space when comparing lines')),
3020 _('ignore white space when comparing lines')),
3012 ('b', 'ignore-space-change', None,
3021 ('b', 'ignore-space-change', None,
3013 _('ignore changes in the amount of white space')),
3022 _('ignore changes in the amount of white space')),
3014 ('B', 'ignore-blank-lines', None,
3023 ('B', 'ignore-blank-lines', None,
3015 _('ignore changes whose lines are all blank')),
3024 _('ignore changes whose lines are all blank')),
3016 ('U', 'unified', 3,
3025 ('U', 'unified', 3,
3017 _('number of lines of context to show'))
3026 _('number of lines of context to show'))
3018 ] + walkopts,
3027 ] + walkopts,
3019 _('hg diff [OPTION]... [-r REV1 [-r REV2]] [FILE]...')),
3028 _('hg diff [OPTION]... [-r REV1 [-r REV2]] [FILE]...')),
3020 "^export":
3029 "^export":
3021 (export,
3030 (export,
3022 [('o', 'output', '', _('print output to file with formatted name')),
3031 [('o', 'output', '', _('print output to file with formatted name')),
3023 ('a', 'text', None, _('treat all files as text')),
3032 ('a', 'text', None, _('treat all files as text')),
3024 ('g', 'git', None, _('use git extended diff format')),
3033 ('g', 'git', None, _('use git extended diff format')),
3025 ('', 'nodates', None, _("don't include dates in diff headers")),
3034 ('', 'nodates', None, _("don't include dates in diff headers")),
3026 ('', 'switch-parent', None, _('diff against the second parent'))],
3035 ('', 'switch-parent', None, _('diff against the second parent'))],
3027 _('hg export [OPTION]... [-o OUTFILESPEC] REV...')),
3036 _('hg export [OPTION]... [-o OUTFILESPEC] REV...')),
3028 "grep":
3037 "grep":
3029 (grep,
3038 (grep,
3030 [('0', 'print0', None, _('end fields with NUL')),
3039 [('0', 'print0', None, _('end fields with NUL')),
3031 ('', 'all', None, _('print all revisions that match')),
3040 ('', 'all', None, _('print all revisions that match')),
3032 ('f', 'follow', None,
3041 ('f', 'follow', None,
3033 _('follow changeset history, or file history across copies and renames')),
3042 _('follow changeset history, or file history across copies and renames')),
3034 ('i', 'ignore-case', None, _('ignore case when matching')),
3043 ('i', 'ignore-case', None, _('ignore case when matching')),
3035 ('l', 'files-with-matches', None,
3044 ('l', 'files-with-matches', None,
3036 _('print only filenames and revs that match')),
3045 _('print only filenames and revs that match')),
3037 ('n', 'line-number', None, _('print matching line numbers')),
3046 ('n', 'line-number', None, _('print matching line numbers')),
3038 ('r', 'rev', [], _('search in given revision range')),
3047 ('r', 'rev', [], _('search in given revision range')),
3039 ('u', 'user', None, _('list the author (long with -v)')),
3048 ('u', 'user', None, _('list the author (long with -v)')),
3040 ('d', 'date', None, _('list the date (short with -q)')),
3049 ('d', 'date', None, _('list the date (short with -q)')),
3041 ] + walkopts,
3050 ] + walkopts,
3042 _('hg grep [OPTION]... PATTERN [FILE]...')),
3051 _('hg grep [OPTION]... PATTERN [FILE]...')),
3043 "heads":
3052 "heads":
3044 (heads,
3053 (heads,
3045 [('r', 'rev', '', _('show only heads which are descendants of rev')),
3054 [('r', 'rev', '', _('show only heads which are descendants of rev')),
3046 ] + templateopts,
3055 ] + templateopts,
3047 _('hg heads [-r REV] [REV]...')),
3056 _('hg heads [-r REV] [REV]...')),
3048 "help": (help_, [], _('hg help [COMMAND]')),
3057 "help": (help_, [], _('hg help [COMMAND]')),
3049 "identify|id":
3058 "identify|id":
3050 (identify,
3059 (identify,
3051 [('r', 'rev', '', _('identify the specified rev')),
3060 [('r', 'rev', '', _('identify the specified rev')),
3052 ('n', 'num', None, _('show local revision number')),
3061 ('n', 'num', None, _('show local revision number')),
3053 ('i', 'id', None, _('show global revision id')),
3062 ('i', 'id', None, _('show global revision id')),
3054 ('b', 'branch', None, _('show branch')),
3063 ('b', 'branch', None, _('show branch')),
3055 ('t', 'tags', None, _('show tags'))],
3064 ('t', 'tags', None, _('show tags'))],
3056 _('hg identify [-nibt] [-r REV] [SOURCE]')),
3065 _('hg identify [-nibt] [-r REV] [SOURCE]')),
3057 "import|patch":
3066 "import|patch":
3058 (import_,
3067 (import_,
3059 [('p', 'strip', 1,
3068 [('p', 'strip', 1,
3060 _('directory strip option for patch. This has the same\n'
3069 _('directory strip option for patch. This has the same\n'
3061 'meaning as the corresponding patch option')),
3070 'meaning as the corresponding patch option')),
3062 ('b', 'base', '', _('base path')),
3071 ('b', 'base', '', _('base path')),
3063 ('f', 'force', None,
3072 ('f', 'force', None,
3064 _('skip check for outstanding uncommitted changes')),
3073 _('skip check for outstanding uncommitted changes')),
3065 ('', 'no-commit', None, _("don't commit, just update the working directory")),
3074 ('', 'no-commit', None, _("don't commit, just update the working directory")),
3066 ('', 'exact', None,
3075 ('', 'exact', None,
3067 _('apply patch to the nodes from which it was generated')),
3076 _('apply patch to the nodes from which it was generated')),
3068 ('', 'import-branch', None,
3077 ('', 'import-branch', None,
3069 _('Use any branch information in patch (implied by --exact)'))] +
3078 _('Use any branch information in patch (implied by --exact)'))] +
3070 commitopts + commitopts2,
3079 commitopts + commitopts2,
3071 _('hg import [OPTION]... PATCH...')),
3080 _('hg import [OPTION]... PATCH...')),
3072 "incoming|in":
3081 "incoming|in":
3073 (incoming,
3082 (incoming,
3074 [('f', 'force', None,
3083 [('f', 'force', None,
3075 _('run even when remote repository is unrelated')),
3084 _('run even when remote repository is unrelated')),
3076 ('n', 'newest-first', None, _('show newest record first')),
3085 ('n', 'newest-first', None, _('show newest record first')),
3077 ('', 'bundle', '', _('file to store the bundles into')),
3086 ('', 'bundle', '', _('file to store the bundles into')),
3078 ('r', 'rev', [],
3087 ('r', 'rev', [],
3079 _('a specific revision up to which you would like to pull')),
3088 _('a specific revision up to which you would like to pull')),
3080 ] + logopts + remoteopts,
3089 ] + logopts + remoteopts,
3081 _('hg incoming [-p] [-n] [-M] [-f] [-r REV]...'
3090 _('hg incoming [-p] [-n] [-M] [-f] [-r REV]...'
3082 ' [--bundle FILENAME] [SOURCE]')),
3091 ' [--bundle FILENAME] [SOURCE]')),
3083 "^init":
3092 "^init":
3084 (init,
3093 (init,
3085 remoteopts,
3094 remoteopts,
3086 _('hg init [-e CMD] [--remotecmd CMD] [DEST]')),
3095 _('hg init [-e CMD] [--remotecmd CMD] [DEST]')),
3087 "locate":
3096 "locate":
3088 (locate,
3097 (locate,
3089 [('r', 'rev', '', _('search the repository as it stood at rev')),
3098 [('r', 'rev', '', _('search the repository as it stood at rev')),
3090 ('0', 'print0', None,
3099 ('0', 'print0', None,
3091 _('end filenames with NUL, for use with xargs')),
3100 _('end filenames with NUL, for use with xargs')),
3092 ('f', 'fullpath', None,
3101 ('f', 'fullpath', None,
3093 _('print complete paths from the filesystem root')),
3102 _('print complete paths from the filesystem root')),
3094 ] + walkopts,
3103 ] + walkopts,
3095 _('hg locate [OPTION]... [PATTERN]...')),
3104 _('hg locate [OPTION]... [PATTERN]...')),
3096 "^log|history":
3105 "^log|history":
3097 (log,
3106 (log,
3098 [('f', 'follow', None,
3107 [('f', 'follow', None,
3099 _('follow changeset history, or file history across copies and renames')),
3108 _('follow changeset history, or file history across copies and renames')),
3100 ('', 'follow-first', None,
3109 ('', 'follow-first', None,
3101 _('only follow the first parent of merge changesets')),
3110 _('only follow the first parent of merge changesets')),
3102 ('d', 'date', '', _('show revs matching date spec')),
3111 ('d', 'date', '', _('show revs matching date spec')),
3103 ('C', 'copies', None, _('show copied files')),
3112 ('C', 'copies', None, _('show copied files')),
3104 ('k', 'keyword', [], _('do case-insensitive search for a keyword')),
3113 ('k', 'keyword', [], _('do case-insensitive search for a keyword')),
3105 ('r', 'rev', [], _('show the specified revision or range')),
3114 ('r', 'rev', [], _('show the specified revision or range')),
3106 ('', 'removed', None, _('include revs where files were removed')),
3115 ('', 'removed', None, _('include revs where files were removed')),
3107 ('m', 'only-merges', None, _('show only merges')),
3116 ('m', 'only-merges', None, _('show only merges')),
3108 ('b', 'only-branch', [],
3117 ('b', 'only-branch', [],
3109 _('show only changesets within the given named branch')),
3118 _('show only changesets within the given named branch')),
3110 ('P', 'prune', [], _('do not display revision or any of its ancestors')),
3119 ('P', 'prune', [], _('do not display revision or any of its ancestors')),
3111 ] + logopts + walkopts,
3120 ] + logopts + walkopts,
3112 _('hg log [OPTION]... [FILE]')),
3121 _('hg log [OPTION]... [FILE]')),
3113 "manifest":
3122 "manifest":
3114 (manifest,
3123 (manifest,
3115 [('r', 'rev', '', _('revision to display'))],
3124 [('r', 'rev', '', _('revision to display'))],
3116 _('hg manifest [-r REV]')),
3125 _('hg manifest [-r REV]')),
3117 "^merge":
3126 "^merge":
3118 (merge,
3127 (merge,
3119 [('f', 'force', None, _('force a merge with outstanding changes')),
3128 [('f', 'force', None, _('force a merge with outstanding changes')),
3120 ('r', 'rev', '', _('revision to merge')),
3129 ('r', 'rev', '', _('revision to merge')),
3121 ],
3130 ],
3122 _('hg merge [-f] [[-r] REV]')),
3131 _('hg merge [-f] [[-r] REV]')),
3123 "outgoing|out":
3132 "outgoing|out":
3124 (outgoing,
3133 (outgoing,
3125 [('f', 'force', None,
3134 [('f', 'force', None,
3126 _('run even when remote repository is unrelated')),
3135 _('run even when remote repository is unrelated')),
3127 ('r', 'rev', [],
3136 ('r', 'rev', [],
3128 _('a specific revision up to which you would like to push')),
3137 _('a specific revision up to which you would like to push')),
3129 ('n', 'newest-first', None, _('show newest record first')),
3138 ('n', 'newest-first', None, _('show newest record first')),
3130 ] + logopts + remoteopts,
3139 ] + logopts + remoteopts,
3131 _('hg outgoing [-M] [-p] [-n] [-f] [-r REV]... [DEST]')),
3140 _('hg outgoing [-M] [-p] [-n] [-f] [-r REV]... [DEST]')),
3132 "^parents":
3141 "^parents":
3133 (parents,
3142 (parents,
3134 [('r', 'rev', '', _('show parents from the specified rev')),
3143 [('r', 'rev', '', _('show parents from the specified rev')),
3135 ] + templateopts,
3144 ] + templateopts,
3136 _('hg parents [-r REV] [FILE]')),
3145 _('hg parents [-r REV] [FILE]')),
3137 "paths": (paths, [], _('hg paths [NAME]')),
3146 "paths": (paths, [], _('hg paths [NAME]')),
3138 "^pull":
3147 "^pull":
3139 (pull,
3148 (pull,
3140 [('u', 'update', None,
3149 [('u', 'update', None,
3141 _('update to new tip if changesets were pulled')),
3150 _('update to new tip if changesets were pulled')),
3142 ('f', 'force', None,
3151 ('f', 'force', None,
3143 _('run even when remote repository is unrelated')),
3152 _('run even when remote repository is unrelated')),
3144 ('r', 'rev', [],
3153 ('r', 'rev', [],
3145 _('a specific revision up to which you would like to pull')),
3154 _('a specific revision up to which you would like to pull')),
3146 ] + remoteopts,
3155 ] + remoteopts,
3147 _('hg pull [-u] [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [SOURCE]')),
3156 _('hg pull [-u] [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [SOURCE]')),
3148 "^push":
3157 "^push":
3149 (push,
3158 (push,
3150 [('f', 'force', None, _('force push')),
3159 [('f', 'force', None, _('force push')),
3151 ('r', 'rev', [],
3160 ('r', 'rev', [],
3152 _('a specific revision up to which you would like to push')),
3161 _('a specific revision up to which you would like to push')),
3153 ] + remoteopts,
3162 ] + remoteopts,
3154 _('hg push [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [DEST]')),
3163 _('hg push [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [DEST]')),
3155 "recover": (recover, [], _('hg recover')),
3164 "recover": (recover, [], _('hg recover')),
3156 "^remove|rm":
3165 "^remove|rm":
3157 (remove,
3166 (remove,
3158 [('A', 'after', None, _('record delete for missing files')),
3167 [('A', 'after', None, _('record delete for missing files')),
3159 ('f', 'force', None,
3168 ('f', 'force', None,
3160 _('remove (and delete) file even if added or modified')),
3169 _('remove (and delete) file even if added or modified')),
3161 ] + walkopts,
3170 ] + walkopts,
3162 _('hg remove [OPTION]... FILE...')),
3171 _('hg remove [OPTION]... FILE...')),
3163 "rename|mv":
3172 "rename|mv":
3164 (rename,
3173 (rename,
3165 [('A', 'after', None, _('record a rename that has already occurred')),
3174 [('A', 'after', None, _('record a rename that has already occurred')),
3166 ('f', 'force', None,
3175 ('f', 'force', None,
3167 _('forcibly copy over an existing managed file')),
3176 _('forcibly copy over an existing managed file')),
3168 ] + walkopts + dryrunopts,
3177 ] + walkopts + dryrunopts,
3169 _('hg rename [OPTION]... SOURCE... DEST')),
3178 _('hg rename [OPTION]... SOURCE... DEST')),
3170 "revert":
3179 "revert":
3171 (revert,
3180 (revert,
3172 [('a', 'all', None, _('revert all changes when no arguments given')),
3181 [('a', 'all', None, _('revert all changes when no arguments given')),
3173 ('d', 'date', '', _('tipmost revision matching date')),
3182 ('d', 'date', '', _('tipmost revision matching date')),
3174 ('r', 'rev', '', _('revision to revert to')),
3183 ('r', 'rev', '', _('revision to revert to')),
3175 ('', 'no-backup', None, _('do not save backup copies of files')),
3184 ('', 'no-backup', None, _('do not save backup copies of files')),
3176 ] + walkopts + dryrunopts,
3185 ] + walkopts + dryrunopts,
3177 _('hg revert [OPTION]... [-r REV] [NAME]...')),
3186 _('hg revert [OPTION]... [-r REV] [NAME]...')),
3178 "rollback": (rollback, [], _('hg rollback')),
3187 "rollback": (rollback, [], _('hg rollback')),
3179 "root": (root, [], _('hg root')),
3188 "root": (root, [], _('hg root')),
3180 "^serve":
3189 "^serve":
3181 (serve,
3190 (serve,
3182 [('A', 'accesslog', '', _('name of access log file to write to')),
3191 [('A', 'accesslog', '', _('name of access log file to write to')),
3183 ('d', 'daemon', None, _('run server in background')),
3192 ('d', 'daemon', None, _('run server in background')),
3184 ('', 'daemon-pipefds', '', _('used internally by daemon mode')),
3193 ('', 'daemon-pipefds', '', _('used internally by daemon mode')),
3185 ('E', 'errorlog', '', _('name of error log file to write to')),
3194 ('E', 'errorlog', '', _('name of error log file to write to')),
3186 ('p', 'port', 0, _('port to listen on (default: 8000)')),
3195 ('p', 'port', 0, _('port to listen on (default: 8000)')),
3187 ('a', 'address', '', _('address to listen on (default: all interfaces)')),
3196 ('a', 'address', '', _('address to listen on (default: all interfaces)')),
3188 ('', 'prefix', '', _('prefix path to serve from (default: server root)')),
3197 ('', 'prefix', '', _('prefix path to serve from (default: server root)')),
3189 ('n', 'name', '',
3198 ('n', 'name', '',
3190 _('name to show in web pages (default: working dir)')),
3199 _('name to show in web pages (default: working dir)')),
3191 ('', 'webdir-conf', '', _('name of the webdir config file'
3200 ('', 'webdir-conf', '', _('name of the webdir config file'
3192 ' (serve more than one repo)')),
3201 ' (serve more than one repo)')),
3193 ('', 'pid-file', '', _('name of file to write process ID to')),
3202 ('', 'pid-file', '', _('name of file to write process ID to')),
3194 ('', 'stdio', None, _('for remote clients')),
3203 ('', 'stdio', None, _('for remote clients')),
3195 ('t', 'templates', '', _('web templates to use')),
3204 ('t', 'templates', '', _('web templates to use')),
3196 ('', 'style', '', _('template style to use')),
3205 ('', 'style', '', _('template style to use')),
3197 ('6', 'ipv6', None, _('use IPv6 in addition to IPv4')),
3206 ('6', 'ipv6', None, _('use IPv6 in addition to IPv4')),
3198 ('', 'certificate', '', _('SSL certificate file'))],
3207 ('', 'certificate', '', _('SSL certificate file'))],
3199 _('hg serve [OPTION]...')),
3208 _('hg serve [OPTION]...')),
3200 "showconfig|debugconfig":
3209 "showconfig|debugconfig":
3201 (showconfig,
3210 (showconfig,
3202 [('u', 'untrusted', None, _('show untrusted configuration options'))],
3211 [('u', 'untrusted', None, _('show untrusted configuration options'))],
3203 _('hg showconfig [-u] [NAME]...')),
3212 _('hg showconfig [-u] [NAME]...')),
3204 "^status|st":
3213 "^status|st":
3205 (status,
3214 (status,
3206 [('A', 'all', None, _('show status of all files')),
3215 [('A', 'all', None, _('show status of all files')),
3207 ('m', 'modified', None, _('show only modified files')),
3216 ('m', 'modified', None, _('show only modified files')),
3208 ('a', 'added', None, _('show only added files')),
3217 ('a', 'added', None, _('show only added files')),
3209 ('r', 'removed', None, _('show only removed files')),
3218 ('r', 'removed', None, _('show only removed files')),
3210 ('d', 'deleted', None, _('show only deleted (but tracked) files')),
3219 ('d', 'deleted', None, _('show only deleted (but tracked) files')),
3211 ('c', 'clean', None, _('show only files without changes')),
3220 ('c', 'clean', None, _('show only files without changes')),
3212 ('u', 'unknown', None, _('show only unknown (not tracked) files')),
3221 ('u', 'unknown', None, _('show only unknown (not tracked) files')),
3213 ('i', 'ignored', None, _('show only ignored files')),
3222 ('i', 'ignored', None, _('show only ignored files')),
3214 ('n', 'no-status', None, _('hide status prefix')),
3223 ('n', 'no-status', None, _('hide status prefix')),
3215 ('C', 'copies', None, _('show source of copied files')),
3224 ('C', 'copies', None, _('show source of copied files')),
3216 ('0', 'print0', None,
3225 ('0', 'print0', None,
3217 _('end filenames with NUL, for use with xargs')),
3226 _('end filenames with NUL, for use with xargs')),
3218 ('', 'rev', [], _('show difference from revision')),
3227 ('', 'rev', [], _('show difference from revision')),
3219 ] + walkopts,
3228 ] + walkopts,
3220 _('hg status [OPTION]... [FILE]...')),
3229 _('hg status [OPTION]... [FILE]...')),
3221 "tag":
3230 "tag":
3222 (tag,
3231 (tag,
3223 [('f', 'force', None, _('replace existing tag')),
3232 [('f', 'force', None, _('replace existing tag')),
3224 ('l', 'local', None, _('make the tag local')),
3233 ('l', 'local', None, _('make the tag local')),
3225 ('r', 'rev', '', _('revision to tag')),
3234 ('r', 'rev', '', _('revision to tag')),
3226 ('', 'remove', None, _('remove a tag')),
3235 ('', 'remove', None, _('remove a tag')),
3227 # -l/--local is already there, commitopts cannot be used
3236 # -l/--local is already there, commitopts cannot be used
3228 ('m', 'message', '', _('use <text> as commit message')),
3237 ('m', 'message', '', _('use <text> as commit message')),
3229 ] + commitopts2,
3238 ] + commitopts2,
3230 _('hg tag [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')),
3239 _('hg tag [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')),
3231 "tags": (tags, [], _('hg tags')),
3240 "tags": (tags, [], _('hg tags')),
3232 "tip":
3241 "tip":
3233 (tip,
3242 (tip,
3234 [('p', 'patch', None, _('show patch')),
3243 [('p', 'patch', None, _('show patch')),
3235 ] + templateopts,
3244 ] + templateopts,
3236 _('hg tip [-p]')),
3245 _('hg tip [-p]')),
3237 "unbundle":
3246 "unbundle":
3238 (unbundle,
3247 (unbundle,
3239 [('u', 'update', None,
3248 [('u', 'update', None,
3240 _('update to new tip if changesets were unbundled'))],
3249 _('update to new tip if changesets were unbundled'))],
3241 _('hg unbundle [-u] FILE...')),
3250 _('hg unbundle [-u] FILE...')),
3242 "^update|up|checkout|co":
3251 "^update|up|checkout|co":
3243 (update,
3252 (update,
3244 [('C', 'clean', None, _('overwrite locally modified files')),
3253 [('C', 'clean', None, _('overwrite locally modified files')),
3245 ('d', 'date', '', _('tipmost revision matching date')),
3254 ('d', 'date', '', _('tipmost revision matching date')),
3246 ('r', 'rev', '', _('revision'))],
3255 ('r', 'rev', '', _('revision'))],
3247 _('hg update [-C] [-d DATE] [[-r] REV]')),
3256 _('hg update [-C] [-d DATE] [[-r] REV]')),
3248 "verify": (verify, [], _('hg verify')),
3257 "verify": (verify, [], _('hg verify')),
3249 "version": (version_, [], _('hg version')),
3258 "version": (version_, [], _('hg version')),
3250 }
3259 }
3251
3260
3252 norepo = ("clone init version help debugcomplete debugdata"
3261 norepo = ("clone init version help debugcomplete debugdata"
3253 " debugindex debugindexdot debugdate debuginstall debugfsinfo")
3262 " debugindex debugindexdot debugdate debuginstall debugfsinfo")
3254 optionalrepo = ("identify paths serve showconfig debugancestor")
3263 optionalrepo = ("identify paths serve showconfig debugancestor")
General Comments 0
You need to be logged in to leave comments. Login now