##// END OF EJS Templates
copy/rename to a removed destination file...
Robin Farine -
r1822:64df4220 default
parent child Browse files
Show More
@@ -1,2924 +1,2944 b''
1 # commands.py - command processing for mercurial
1 # commands.py - command processing for mercurial
2 #
2 #
3 # Copyright 2005 Matt Mackall <mpm@selenic.com>
3 # Copyright 2005 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 demandload import demandload
8 from demandload import demandload
9 from node import *
9 from node import *
10 from i18n import gettext as _
10 from i18n import gettext as _
11 demandload(globals(), "os re sys signal shutil imp urllib pdb")
11 demandload(globals(), "os re sys signal shutil imp urllib pdb")
12 demandload(globals(), "fancyopts ui hg util lock revlog")
12 demandload(globals(), "fancyopts ui hg util lock revlog")
13 demandload(globals(), "fnmatch hgweb mdiff random signal time traceback")
13 demandload(globals(), "fnmatch hgweb mdiff random signal time traceback")
14 demandload(globals(), "errno socket version struct atexit sets bz2")
14 demandload(globals(), "errno socket version struct atexit sets bz2")
15
15
16 class UnknownCommand(Exception):
16 class UnknownCommand(Exception):
17 """Exception raised if command is not in the command table."""
17 """Exception raised if command is not in the command table."""
18 class AmbiguousCommand(Exception):
18 class AmbiguousCommand(Exception):
19 """Exception raised if command shortcut matches more than one command."""
19 """Exception raised if command shortcut matches more than one command."""
20
20
21 def filterfiles(filters, files):
21 def filterfiles(filters, files):
22 l = [x for x in files if x in filters]
22 l = [x for x in files if x in filters]
23
23
24 for t in filters:
24 for t in filters:
25 if t and t[-1] != "/":
25 if t and t[-1] != "/":
26 t += "/"
26 t += "/"
27 l += [x for x in files if x.startswith(t)]
27 l += [x for x in files if x.startswith(t)]
28 return l
28 return l
29
29
30 def relpath(repo, args):
30 def relpath(repo, args):
31 cwd = repo.getcwd()
31 cwd = repo.getcwd()
32 if cwd:
32 if cwd:
33 return [util.normpath(os.path.join(cwd, x)) for x in args]
33 return [util.normpath(os.path.join(cwd, x)) for x in args]
34 return args
34 return args
35
35
36 def matchpats(repo, pats=[], opts={}, head=''):
36 def matchpats(repo, pats=[], opts={}, head=''):
37 cwd = repo.getcwd()
37 cwd = repo.getcwd()
38 if not pats and cwd:
38 if not pats and cwd:
39 opts['include'] = [os.path.join(cwd, i) for i in opts['include']]
39 opts['include'] = [os.path.join(cwd, i) for i in opts['include']]
40 opts['exclude'] = [os.path.join(cwd, x) for x in opts['exclude']]
40 opts['exclude'] = [os.path.join(cwd, x) for x in opts['exclude']]
41 cwd = ''
41 cwd = ''
42 return util.cmdmatcher(repo.root, cwd, pats or ['.'], opts.get('include'),
42 return util.cmdmatcher(repo.root, cwd, pats or ['.'], opts.get('include'),
43 opts.get('exclude'), head)
43 opts.get('exclude'), head)
44
44
45 def makewalk(repo, pats, opts, node=None, head=''):
45 def makewalk(repo, pats, opts, node=None, head=''):
46 files, matchfn, anypats = matchpats(repo, pats, opts, head)
46 files, matchfn, anypats = matchpats(repo, pats, opts, head)
47 exact = dict(zip(files, files))
47 exact = dict(zip(files, files))
48 def walk():
48 def walk():
49 for src, fn in repo.walk(node=node, files=files, match=matchfn):
49 for src, fn in repo.walk(node=node, files=files, match=matchfn):
50 yield src, fn, util.pathto(repo.getcwd(), fn), fn in exact
50 yield src, fn, util.pathto(repo.getcwd(), fn), fn in exact
51 return files, matchfn, walk()
51 return files, matchfn, walk()
52
52
53 def walk(repo, pats, opts, node=None, head=''):
53 def walk(repo, pats, opts, node=None, head=''):
54 files, matchfn, results = makewalk(repo, pats, opts, node, head)
54 files, matchfn, results = makewalk(repo, pats, opts, node, head)
55 for r in results:
55 for r in results:
56 yield r
56 yield r
57
57
58 def walkchangerevs(ui, repo, pats, opts):
58 def walkchangerevs(ui, repo, pats, opts):
59 '''Iterate over files and the revs they changed in.
59 '''Iterate over files and the revs they changed in.
60
60
61 Callers most commonly need to iterate backwards over the history
61 Callers most commonly need to iterate backwards over the history
62 it is interested in. Doing so has awful (quadratic-looking)
62 it is interested in. Doing so has awful (quadratic-looking)
63 performance, so we use iterators in a "windowed" way.
63 performance, so we use iterators in a "windowed" way.
64
64
65 We walk a window of revisions in the desired order. Within the
65 We walk a window of revisions in the desired order. Within the
66 window, we first walk forwards to gather data, then in the desired
66 window, we first walk forwards to gather data, then in the desired
67 order (usually backwards) to display it.
67 order (usually backwards) to display it.
68
68
69 This function returns an (iterator, getchange, matchfn) tuple. The
69 This function returns an (iterator, getchange, matchfn) tuple. The
70 getchange function returns the changelog entry for a numeric
70 getchange function returns the changelog entry for a numeric
71 revision. The iterator yields 3-tuples. They will be of one of
71 revision. The iterator yields 3-tuples. They will be of one of
72 the following forms:
72 the following forms:
73
73
74 "window", incrementing, lastrev: stepping through a window,
74 "window", incrementing, lastrev: stepping through a window,
75 positive if walking forwards through revs, last rev in the
75 positive if walking forwards through revs, last rev in the
76 sequence iterated over - use to reset state for the current window
76 sequence iterated over - use to reset state for the current window
77
77
78 "add", rev, fns: out-of-order traversal of the given file names
78 "add", rev, fns: out-of-order traversal of the given file names
79 fns, which changed during revision rev - use to gather data for
79 fns, which changed during revision rev - use to gather data for
80 possible display
80 possible display
81
81
82 "iter", rev, None: in-order traversal of the revs earlier iterated
82 "iter", rev, None: in-order traversal of the revs earlier iterated
83 over with "add" - use to display data'''
83 over with "add" - use to display data'''
84
84
85 def increasing_windows(start, end, windowsize=8, sizelimit=512):
85 def increasing_windows(start, end, windowsize=8, sizelimit=512):
86 if start < end:
86 if start < end:
87 while start < end:
87 while start < end:
88 yield start, min(windowsize, end-start)
88 yield start, min(windowsize, end-start)
89 start += windowsize
89 start += windowsize
90 if windowsize < sizelimit:
90 if windowsize < sizelimit:
91 windowsize *= 2
91 windowsize *= 2
92 else:
92 else:
93 while start > end:
93 while start > end:
94 yield start, min(windowsize, start-end-1)
94 yield start, min(windowsize, start-end-1)
95 start -= windowsize
95 start -= windowsize
96 if windowsize < sizelimit:
96 if windowsize < sizelimit:
97 windowsize *= 2
97 windowsize *= 2
98
98
99
99
100 files, matchfn, anypats = matchpats(repo, pats, opts)
100 files, matchfn, anypats = matchpats(repo, pats, opts)
101
101
102 if repo.changelog.count() == 0:
102 if repo.changelog.count() == 0:
103 return [], False, matchfn
103 return [], False, matchfn
104
104
105 revs = map(int, revrange(ui, repo, opts['rev'] or ['tip:0']))
105 revs = map(int, revrange(ui, repo, opts['rev'] or ['tip:0']))
106 wanted = {}
106 wanted = {}
107 slowpath = anypats
107 slowpath = anypats
108 fncache = {}
108 fncache = {}
109
109
110 chcache = {}
110 chcache = {}
111 def getchange(rev):
111 def getchange(rev):
112 ch = chcache.get(rev)
112 ch = chcache.get(rev)
113 if ch is None:
113 if ch is None:
114 chcache[rev] = ch = repo.changelog.read(repo.lookup(str(rev)))
114 chcache[rev] = ch = repo.changelog.read(repo.lookup(str(rev)))
115 return ch
115 return ch
116
116
117 if not slowpath and not files:
117 if not slowpath and not files:
118 # No files, no patterns. Display all revs.
118 # No files, no patterns. Display all revs.
119 wanted = dict(zip(revs, revs))
119 wanted = dict(zip(revs, revs))
120 if not slowpath:
120 if not slowpath:
121 # Only files, no patterns. Check the history of each file.
121 # Only files, no patterns. Check the history of each file.
122 def filerevgen(filelog):
122 def filerevgen(filelog):
123 for i, window in increasing_windows(filelog.count()-1, -1):
123 for i, window in increasing_windows(filelog.count()-1, -1):
124 revs = []
124 revs = []
125 for j in xrange(i - window, i + 1):
125 for j in xrange(i - window, i + 1):
126 revs.append(filelog.linkrev(filelog.node(j)))
126 revs.append(filelog.linkrev(filelog.node(j)))
127 revs.reverse()
127 revs.reverse()
128 for rev in revs:
128 for rev in revs:
129 yield rev
129 yield rev
130
130
131 minrev, maxrev = min(revs), max(revs)
131 minrev, maxrev = min(revs), max(revs)
132 for file_ in files:
132 for file_ in files:
133 filelog = repo.file(file_)
133 filelog = repo.file(file_)
134 # A zero count may be a directory or deleted file, so
134 # A zero count may be a directory or deleted file, so
135 # try to find matching entries on the slow path.
135 # try to find matching entries on the slow path.
136 if filelog.count() == 0:
136 if filelog.count() == 0:
137 slowpath = True
137 slowpath = True
138 break
138 break
139 for rev in filerevgen(filelog):
139 for rev in filerevgen(filelog):
140 if rev <= maxrev:
140 if rev <= maxrev:
141 if rev < minrev:
141 if rev < minrev:
142 break
142 break
143 fncache.setdefault(rev, [])
143 fncache.setdefault(rev, [])
144 fncache[rev].append(file_)
144 fncache[rev].append(file_)
145 wanted[rev] = 1
145 wanted[rev] = 1
146 if slowpath:
146 if slowpath:
147 # The slow path checks files modified in every changeset.
147 # The slow path checks files modified in every changeset.
148 def changerevgen():
148 def changerevgen():
149 for i, window in increasing_windows(repo.changelog.count()-1, -1):
149 for i, window in increasing_windows(repo.changelog.count()-1, -1):
150 for j in xrange(i - window, i + 1):
150 for j in xrange(i - window, i + 1):
151 yield j, getchange(j)[3]
151 yield j, getchange(j)[3]
152
152
153 for rev, changefiles in changerevgen():
153 for rev, changefiles in changerevgen():
154 matches = filter(matchfn, changefiles)
154 matches = filter(matchfn, changefiles)
155 if matches:
155 if matches:
156 fncache[rev] = matches
156 fncache[rev] = matches
157 wanted[rev] = 1
157 wanted[rev] = 1
158
158
159 def iterate():
159 def iterate():
160 for i, window in increasing_windows(0, len(revs)):
160 for i, window in increasing_windows(0, len(revs)):
161 yield 'window', revs[0] < revs[-1], revs[-1]
161 yield 'window', revs[0] < revs[-1], revs[-1]
162 nrevs = [rev for rev in revs[i:i+window]
162 nrevs = [rev for rev in revs[i:i+window]
163 if rev in wanted]
163 if rev in wanted]
164 srevs = list(nrevs)
164 srevs = list(nrevs)
165 srevs.sort()
165 srevs.sort()
166 for rev in srevs:
166 for rev in srevs:
167 fns = fncache.get(rev) or filter(matchfn, getchange(rev)[3])
167 fns = fncache.get(rev) or filter(matchfn, getchange(rev)[3])
168 yield 'add', rev, fns
168 yield 'add', rev, fns
169 for rev in nrevs:
169 for rev in nrevs:
170 yield 'iter', rev, None
170 yield 'iter', rev, None
171 return iterate(), getchange, matchfn
171 return iterate(), getchange, matchfn
172
172
173 revrangesep = ':'
173 revrangesep = ':'
174
174
175 def revrange(ui, repo, revs, revlog=None):
175 def revrange(ui, repo, revs, revlog=None):
176 """Yield revision as strings from a list of revision specifications."""
176 """Yield revision as strings from a list of revision specifications."""
177 if revlog is None:
177 if revlog is None:
178 revlog = repo.changelog
178 revlog = repo.changelog
179 revcount = revlog.count()
179 revcount = revlog.count()
180 def fix(val, defval):
180 def fix(val, defval):
181 if not val:
181 if not val:
182 return defval
182 return defval
183 try:
183 try:
184 num = int(val)
184 num = int(val)
185 if str(num) != val:
185 if str(num) != val:
186 raise ValueError
186 raise ValueError
187 if num < 0:
187 if num < 0:
188 num += revcount
188 num += revcount
189 if num < 0:
189 if num < 0:
190 num = 0
190 num = 0
191 elif num >= revcount:
191 elif num >= revcount:
192 raise ValueError
192 raise ValueError
193 except ValueError:
193 except ValueError:
194 try:
194 try:
195 num = repo.changelog.rev(repo.lookup(val))
195 num = repo.changelog.rev(repo.lookup(val))
196 except KeyError:
196 except KeyError:
197 try:
197 try:
198 num = revlog.rev(revlog.lookup(val))
198 num = revlog.rev(revlog.lookup(val))
199 except KeyError:
199 except KeyError:
200 raise util.Abort(_('invalid revision identifier %s'), val)
200 raise util.Abort(_('invalid revision identifier %s'), val)
201 return num
201 return num
202 seen = {}
202 seen = {}
203 for spec in revs:
203 for spec in revs:
204 if spec.find(revrangesep) >= 0:
204 if spec.find(revrangesep) >= 0:
205 start, end = spec.split(revrangesep, 1)
205 start, end = spec.split(revrangesep, 1)
206 start = fix(start, 0)
206 start = fix(start, 0)
207 end = fix(end, revcount - 1)
207 end = fix(end, revcount - 1)
208 step = start > end and -1 or 1
208 step = start > end and -1 or 1
209 for rev in xrange(start, end+step, step):
209 for rev in xrange(start, end+step, step):
210 if rev in seen:
210 if rev in seen:
211 continue
211 continue
212 seen[rev] = 1
212 seen[rev] = 1
213 yield str(rev)
213 yield str(rev)
214 else:
214 else:
215 rev = fix(spec, None)
215 rev = fix(spec, None)
216 if rev in seen:
216 if rev in seen:
217 continue
217 continue
218 seen[rev] = 1
218 seen[rev] = 1
219 yield str(rev)
219 yield str(rev)
220
220
221 def make_filename(repo, r, pat, node=None,
221 def make_filename(repo, r, pat, node=None,
222 total=None, seqno=None, revwidth=None, pathname=None):
222 total=None, seqno=None, revwidth=None, pathname=None):
223 node_expander = {
223 node_expander = {
224 'H': lambda: hex(node),
224 'H': lambda: hex(node),
225 'R': lambda: str(r.rev(node)),
225 'R': lambda: str(r.rev(node)),
226 'h': lambda: short(node),
226 'h': lambda: short(node),
227 }
227 }
228 expander = {
228 expander = {
229 '%': lambda: '%',
229 '%': lambda: '%',
230 'b': lambda: os.path.basename(repo.root),
230 'b': lambda: os.path.basename(repo.root),
231 }
231 }
232
232
233 try:
233 try:
234 if node:
234 if node:
235 expander.update(node_expander)
235 expander.update(node_expander)
236 if node and revwidth is not None:
236 if node and revwidth is not None:
237 expander['r'] = lambda: str(r.rev(node)).zfill(revwidth)
237 expander['r'] = lambda: str(r.rev(node)).zfill(revwidth)
238 if total is not None:
238 if total is not None:
239 expander['N'] = lambda: str(total)
239 expander['N'] = lambda: str(total)
240 if seqno is not None:
240 if seqno is not None:
241 expander['n'] = lambda: str(seqno)
241 expander['n'] = lambda: str(seqno)
242 if total is not None and seqno is not None:
242 if total is not None and seqno is not None:
243 expander['n'] = lambda:str(seqno).zfill(len(str(total)))
243 expander['n'] = lambda:str(seqno).zfill(len(str(total)))
244 if pathname is not None:
244 if pathname is not None:
245 expander['s'] = lambda: os.path.basename(pathname)
245 expander['s'] = lambda: os.path.basename(pathname)
246 expander['d'] = lambda: os.path.dirname(pathname) or '.'
246 expander['d'] = lambda: os.path.dirname(pathname) or '.'
247 expander['p'] = lambda: pathname
247 expander['p'] = lambda: pathname
248
248
249 newname = []
249 newname = []
250 patlen = len(pat)
250 patlen = len(pat)
251 i = 0
251 i = 0
252 while i < patlen:
252 while i < patlen:
253 c = pat[i]
253 c = pat[i]
254 if c == '%':
254 if c == '%':
255 i += 1
255 i += 1
256 c = pat[i]
256 c = pat[i]
257 c = expander[c]()
257 c = expander[c]()
258 newname.append(c)
258 newname.append(c)
259 i += 1
259 i += 1
260 return ''.join(newname)
260 return ''.join(newname)
261 except KeyError, inst:
261 except KeyError, inst:
262 raise util.Abort(_("invalid format spec '%%%s' in output file name"),
262 raise util.Abort(_("invalid format spec '%%%s' in output file name"),
263 inst.args[0])
263 inst.args[0])
264
264
265 def make_file(repo, r, pat, node=None,
265 def make_file(repo, r, pat, node=None,
266 total=None, seqno=None, revwidth=None, mode='wb', pathname=None):
266 total=None, seqno=None, revwidth=None, mode='wb', pathname=None):
267 if not pat or pat == '-':
267 if not pat or pat == '-':
268 return 'w' in mode and sys.stdout or sys.stdin
268 return 'w' in mode and sys.stdout or sys.stdin
269 if hasattr(pat, 'write') and 'w' in mode:
269 if hasattr(pat, 'write') and 'w' in mode:
270 return pat
270 return pat
271 if hasattr(pat, 'read') and 'r' in mode:
271 if hasattr(pat, 'read') and 'r' in mode:
272 return pat
272 return pat
273 return open(make_filename(repo, r, pat, node, total, seqno, revwidth,
273 return open(make_filename(repo, r, pat, node, total, seqno, revwidth,
274 pathname),
274 pathname),
275 mode)
275 mode)
276
276
277 def dodiff(fp, ui, repo, node1, node2, files=None, match=util.always,
277 def dodiff(fp, ui, repo, node1, node2, files=None, match=util.always,
278 changes=None, text=False, opts={}):
278 changes=None, text=False, opts={}):
279 if not node1:
279 if not node1:
280 node1 = repo.dirstate.parents()[0]
280 node1 = repo.dirstate.parents()[0]
281 # reading the data for node1 early allows it to play nicely
281 # reading the data for node1 early allows it to play nicely
282 # with repo.changes and the revlog cache.
282 # with repo.changes and the revlog cache.
283 change = repo.changelog.read(node1)
283 change = repo.changelog.read(node1)
284 mmap = repo.manifest.read(change[0])
284 mmap = repo.manifest.read(change[0])
285 date1 = util.datestr(change[2])
285 date1 = util.datestr(change[2])
286
286
287 if not changes:
287 if not changes:
288 changes = repo.changes(node1, node2, files, match=match)
288 changes = repo.changes(node1, node2, files, match=match)
289 modified, added, removed, deleted, unknown = changes
289 modified, added, removed, deleted, unknown = changes
290 if files:
290 if files:
291 modified, added, removed = map(lambda x: filterfiles(files, x),
291 modified, added, removed = map(lambda x: filterfiles(files, x),
292 (modified, added, removed))
292 (modified, added, removed))
293
293
294 if not modified and not added and not removed:
294 if not modified and not added and not removed:
295 return
295 return
296
296
297 if node2:
297 if node2:
298 change = repo.changelog.read(node2)
298 change = repo.changelog.read(node2)
299 mmap2 = repo.manifest.read(change[0])
299 mmap2 = repo.manifest.read(change[0])
300 date2 = util.datestr(change[2])
300 date2 = util.datestr(change[2])
301 def read(f):
301 def read(f):
302 return repo.file(f).read(mmap2[f])
302 return repo.file(f).read(mmap2[f])
303 else:
303 else:
304 date2 = util.datestr()
304 date2 = util.datestr()
305 def read(f):
305 def read(f):
306 return repo.wread(f)
306 return repo.wread(f)
307
307
308 if ui.quiet:
308 if ui.quiet:
309 r = None
309 r = None
310 else:
310 else:
311 hexfunc = ui.verbose and hex or short
311 hexfunc = ui.verbose and hex or short
312 r = [hexfunc(node) for node in [node1, node2] if node]
312 r = [hexfunc(node) for node in [node1, node2] if node]
313
313
314 diffopts = ui.diffopts()
314 diffopts = ui.diffopts()
315 showfunc = opts.get('show_function') or diffopts['showfunc']
315 showfunc = opts.get('show_function') or diffopts['showfunc']
316 ignorews = opts.get('ignore_all_space') or diffopts['ignorews']
316 ignorews = opts.get('ignore_all_space') or diffopts['ignorews']
317 for f in modified:
317 for f in modified:
318 to = None
318 to = None
319 if f in mmap:
319 if f in mmap:
320 to = repo.file(f).read(mmap[f])
320 to = repo.file(f).read(mmap[f])
321 tn = read(f)
321 tn = read(f)
322 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
322 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
323 showfunc=showfunc, ignorews=ignorews))
323 showfunc=showfunc, ignorews=ignorews))
324 for f in added:
324 for f in added:
325 to = None
325 to = None
326 tn = read(f)
326 tn = read(f)
327 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
327 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
328 showfunc=showfunc, ignorews=ignorews))
328 showfunc=showfunc, ignorews=ignorews))
329 for f in removed:
329 for f in removed:
330 to = repo.file(f).read(mmap[f])
330 to = repo.file(f).read(mmap[f])
331 tn = None
331 tn = None
332 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
332 fp.write(mdiff.unidiff(to, date1, tn, date2, f, r, text=text,
333 showfunc=showfunc, ignorews=ignorews))
333 showfunc=showfunc, ignorews=ignorews))
334
334
335 def trimuser(ui, name, rev, revcache):
335 def trimuser(ui, name, rev, revcache):
336 """trim the name of the user who committed a change"""
336 """trim the name of the user who committed a change"""
337 user = revcache.get(rev)
337 user = revcache.get(rev)
338 if user is None:
338 if user is None:
339 user = revcache[rev] = ui.shortuser(name)
339 user = revcache[rev] = ui.shortuser(name)
340 return user
340 return user
341
341
342 def show_changeset(ui, repo, rev=0, changenode=None, brinfo=None):
342 def show_changeset(ui, repo, rev=0, changenode=None, brinfo=None):
343 """show a single changeset or file revision"""
343 """show a single changeset or file revision"""
344 log = repo.changelog
344 log = repo.changelog
345 if changenode is None:
345 if changenode is None:
346 changenode = log.node(rev)
346 changenode = log.node(rev)
347 elif not rev:
347 elif not rev:
348 rev = log.rev(changenode)
348 rev = log.rev(changenode)
349
349
350 if ui.quiet:
350 if ui.quiet:
351 ui.write("%d:%s\n" % (rev, short(changenode)))
351 ui.write("%d:%s\n" % (rev, short(changenode)))
352 return
352 return
353
353
354 changes = log.read(changenode)
354 changes = log.read(changenode)
355 date = util.datestr(changes[2])
355 date = util.datestr(changes[2])
356
356
357 parents = [(log.rev(p), ui.verbose and hex(p) or short(p))
357 parents = [(log.rev(p), ui.verbose and hex(p) or short(p))
358 for p in log.parents(changenode)
358 for p in log.parents(changenode)
359 if ui.debugflag or p != nullid]
359 if ui.debugflag or p != nullid]
360 if not ui.debugflag and len(parents) == 1 and parents[0][0] == rev-1:
360 if not ui.debugflag and len(parents) == 1 and parents[0][0] == rev-1:
361 parents = []
361 parents = []
362
362
363 if ui.verbose:
363 if ui.verbose:
364 ui.write(_("changeset: %d:%s\n") % (rev, hex(changenode)))
364 ui.write(_("changeset: %d:%s\n") % (rev, hex(changenode)))
365 else:
365 else:
366 ui.write(_("changeset: %d:%s\n") % (rev, short(changenode)))
366 ui.write(_("changeset: %d:%s\n") % (rev, short(changenode)))
367
367
368 for tag in repo.nodetags(changenode):
368 for tag in repo.nodetags(changenode):
369 ui.status(_("tag: %s\n") % tag)
369 ui.status(_("tag: %s\n") % tag)
370 for parent in parents:
370 for parent in parents:
371 ui.write(_("parent: %d:%s\n") % parent)
371 ui.write(_("parent: %d:%s\n") % parent)
372
372
373 if brinfo and changenode in brinfo:
373 if brinfo and changenode in brinfo:
374 br = brinfo[changenode]
374 br = brinfo[changenode]
375 ui.write(_("branch: %s\n") % " ".join(br))
375 ui.write(_("branch: %s\n") % " ".join(br))
376
376
377 ui.debug(_("manifest: %d:%s\n") % (repo.manifest.rev(changes[0]),
377 ui.debug(_("manifest: %d:%s\n") % (repo.manifest.rev(changes[0]),
378 hex(changes[0])))
378 hex(changes[0])))
379 ui.status(_("user: %s\n") % changes[1])
379 ui.status(_("user: %s\n") % changes[1])
380 ui.status(_("date: %s\n") % date)
380 ui.status(_("date: %s\n") % date)
381
381
382 if ui.debugflag:
382 if ui.debugflag:
383 files = repo.changes(log.parents(changenode)[0], changenode)
383 files = repo.changes(log.parents(changenode)[0], changenode)
384 for key, value in zip([_("files:"), _("files+:"), _("files-:")], files):
384 for key, value in zip([_("files:"), _("files+:"), _("files-:")], files):
385 if value:
385 if value:
386 ui.note("%-12s %s\n" % (key, " ".join(value)))
386 ui.note("%-12s %s\n" % (key, " ".join(value)))
387 else:
387 else:
388 ui.note(_("files: %s\n") % " ".join(changes[3]))
388 ui.note(_("files: %s\n") % " ".join(changes[3]))
389
389
390 description = changes[4].strip()
390 description = changes[4].strip()
391 if description:
391 if description:
392 if ui.verbose:
392 if ui.verbose:
393 ui.status(_("description:\n"))
393 ui.status(_("description:\n"))
394 ui.status(description)
394 ui.status(description)
395 ui.status("\n\n")
395 ui.status("\n\n")
396 else:
396 else:
397 ui.status(_("summary: %s\n") % description.splitlines()[0])
397 ui.status(_("summary: %s\n") % description.splitlines()[0])
398 ui.status("\n")
398 ui.status("\n")
399
399
400 def show_version(ui):
400 def show_version(ui):
401 """output version and copyright information"""
401 """output version and copyright information"""
402 ui.write(_("Mercurial Distributed SCM (version %s)\n")
402 ui.write(_("Mercurial Distributed SCM (version %s)\n")
403 % version.get_version())
403 % version.get_version())
404 ui.status(_(
404 ui.status(_(
405 "\nCopyright (C) 2005 Matt Mackall <mpm@selenic.com>\n"
405 "\nCopyright (C) 2005 Matt Mackall <mpm@selenic.com>\n"
406 "This is free software; see the source for copying conditions. "
406 "This is free software; see the source for copying conditions. "
407 "There is NO\nwarranty; "
407 "There is NO\nwarranty; "
408 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
408 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
409 ))
409 ))
410
410
411 def help_(ui, cmd=None, with_version=False):
411 def help_(ui, cmd=None, with_version=False):
412 """show help for a given command or all commands"""
412 """show help for a given command or all commands"""
413 option_lists = []
413 option_lists = []
414 if cmd and cmd != 'shortlist':
414 if cmd and cmd != 'shortlist':
415 if with_version:
415 if with_version:
416 show_version(ui)
416 show_version(ui)
417 ui.write('\n')
417 ui.write('\n')
418 aliases, i = find(cmd)
418 aliases, i = find(cmd)
419 # synopsis
419 # synopsis
420 ui.write("%s\n\n" % i[2])
420 ui.write("%s\n\n" % i[2])
421
421
422 # description
422 # description
423 doc = i[0].__doc__
423 doc = i[0].__doc__
424 if not doc:
424 if not doc:
425 doc = _("(No help text available)")
425 doc = _("(No help text available)")
426 if ui.quiet:
426 if ui.quiet:
427 doc = doc.splitlines(0)[0]
427 doc = doc.splitlines(0)[0]
428 ui.write("%s\n" % doc.rstrip())
428 ui.write("%s\n" % doc.rstrip())
429
429
430 if not ui.quiet:
430 if not ui.quiet:
431 # aliases
431 # aliases
432 if len(aliases) > 1:
432 if len(aliases) > 1:
433 ui.write(_("\naliases: %s\n") % ', '.join(aliases[1:]))
433 ui.write(_("\naliases: %s\n") % ', '.join(aliases[1:]))
434
434
435 # options
435 # options
436 if i[1]:
436 if i[1]:
437 option_lists.append(("options", i[1]))
437 option_lists.append(("options", i[1]))
438
438
439 else:
439 else:
440 # program name
440 # program name
441 if ui.verbose or with_version:
441 if ui.verbose or with_version:
442 show_version(ui)
442 show_version(ui)
443 else:
443 else:
444 ui.status(_("Mercurial Distributed SCM\n"))
444 ui.status(_("Mercurial Distributed SCM\n"))
445 ui.status('\n')
445 ui.status('\n')
446
446
447 # list of commands
447 # list of commands
448 if cmd == "shortlist":
448 if cmd == "shortlist":
449 ui.status(_('basic commands (use "hg help" '
449 ui.status(_('basic commands (use "hg help" '
450 'for the full list or option "-v" for details):\n\n'))
450 'for the full list or option "-v" for details):\n\n'))
451 elif ui.verbose:
451 elif ui.verbose:
452 ui.status(_('list of commands:\n\n'))
452 ui.status(_('list of commands:\n\n'))
453 else:
453 else:
454 ui.status(_('list of commands (use "hg help -v" '
454 ui.status(_('list of commands (use "hg help -v" '
455 'to show aliases and global options):\n\n'))
455 'to show aliases and global options):\n\n'))
456
456
457 h = {}
457 h = {}
458 cmds = {}
458 cmds = {}
459 for c, e in table.items():
459 for c, e in table.items():
460 f = c.split("|")[0]
460 f = c.split("|")[0]
461 if cmd == "shortlist" and not f.startswith("^"):
461 if cmd == "shortlist" and not f.startswith("^"):
462 continue
462 continue
463 f = f.lstrip("^")
463 f = f.lstrip("^")
464 if not ui.debugflag and f.startswith("debug"):
464 if not ui.debugflag and f.startswith("debug"):
465 continue
465 continue
466 doc = e[0].__doc__
466 doc = e[0].__doc__
467 if not doc:
467 if not doc:
468 doc = _("(No help text available)")
468 doc = _("(No help text available)")
469 h[f] = doc.splitlines(0)[0].rstrip()
469 h[f] = doc.splitlines(0)[0].rstrip()
470 cmds[f] = c.lstrip("^")
470 cmds[f] = c.lstrip("^")
471
471
472 fns = h.keys()
472 fns = h.keys()
473 fns.sort()
473 fns.sort()
474 m = max(map(len, fns))
474 m = max(map(len, fns))
475 for f in fns:
475 for f in fns:
476 if ui.verbose:
476 if ui.verbose:
477 commands = cmds[f].replace("|",", ")
477 commands = cmds[f].replace("|",", ")
478 ui.write(" %s:\n %s\n"%(commands, h[f]))
478 ui.write(" %s:\n %s\n"%(commands, h[f]))
479 else:
479 else:
480 ui.write(' %-*s %s\n' % (m, f, h[f]))
480 ui.write(' %-*s %s\n' % (m, f, h[f]))
481
481
482 # global options
482 # global options
483 if ui.verbose:
483 if ui.verbose:
484 option_lists.append(("global options", globalopts))
484 option_lists.append(("global options", globalopts))
485
485
486 # list all option lists
486 # list all option lists
487 opt_output = []
487 opt_output = []
488 for title, options in option_lists:
488 for title, options in option_lists:
489 opt_output.append(("\n%s:\n" % title, None))
489 opt_output.append(("\n%s:\n" % title, None))
490 for shortopt, longopt, default, desc in options:
490 for shortopt, longopt, default, desc in options:
491 opt_output.append(("%2s%s" % (shortopt and "-%s" % shortopt,
491 opt_output.append(("%2s%s" % (shortopt and "-%s" % shortopt,
492 longopt and " --%s" % longopt),
492 longopt and " --%s" % longopt),
493 "%s%s" % (desc,
493 "%s%s" % (desc,
494 default
494 default
495 and _(" (default: %s)") % default
495 and _(" (default: %s)") % default
496 or "")))
496 or "")))
497
497
498 if opt_output:
498 if opt_output:
499 opts_len = max([len(line[0]) for line in opt_output if line[1]])
499 opts_len = max([len(line[0]) for line in opt_output if line[1]])
500 for first, second in opt_output:
500 for first, second in opt_output:
501 if second:
501 if second:
502 ui.write(" %-*s %s\n" % (opts_len, first, second))
502 ui.write(" %-*s %s\n" % (opts_len, first, second))
503 else:
503 else:
504 ui.write("%s\n" % first)
504 ui.write("%s\n" % first)
505
505
506 # Commands start here, listed alphabetically
506 # Commands start here, listed alphabetically
507
507
508 def add(ui, repo, *pats, **opts):
508 def add(ui, repo, *pats, **opts):
509 """add the specified files on the next commit
509 """add the specified files on the next commit
510
510
511 Schedule files to be version controlled and added to the repository.
511 Schedule files to be version controlled and added to the repository.
512
512
513 The files will be added to the repository at the next commit.
513 The files will be added to the repository at the next commit.
514
514
515 If no names are given, add all files in the repository.
515 If no names are given, add all files in the repository.
516 """
516 """
517
517
518 names = []
518 names = []
519 for src, abs, rel, exact in walk(repo, pats, opts):
519 for src, abs, rel, exact in walk(repo, pats, opts):
520 if exact:
520 if exact:
521 if ui.verbose:
521 if ui.verbose:
522 ui.status(_('adding %s\n') % rel)
522 ui.status(_('adding %s\n') % rel)
523 names.append(abs)
523 names.append(abs)
524 elif repo.dirstate.state(abs) == '?':
524 elif repo.dirstate.state(abs) == '?':
525 ui.status(_('adding %s\n') % rel)
525 ui.status(_('adding %s\n') % rel)
526 names.append(abs)
526 names.append(abs)
527 repo.add(names)
527 repo.add(names)
528
528
529 def addremove(ui, repo, *pats, **opts):
529 def addremove(ui, repo, *pats, **opts):
530 """add all new files, delete all missing files
530 """add all new files, delete all missing files
531
531
532 Add all new files and remove all missing files from the repository.
532 Add all new files and remove all missing files from the repository.
533
533
534 New files are ignored if they match any of the patterns in .hgignore. As
534 New files are ignored if they match any of the patterns in .hgignore. As
535 with add, these changes take effect at the next commit.
535 with add, these changes take effect at the next commit.
536 """
536 """
537 return addremove_lock(ui, repo, pats, opts)
537 return addremove_lock(ui, repo, pats, opts)
538
538
539 def addremove_lock(ui, repo, pats, opts, wlock=None):
539 def addremove_lock(ui, repo, pats, opts, wlock=None):
540 add, remove = [], []
540 add, remove = [], []
541 for src, abs, rel, exact in walk(repo, pats, opts):
541 for src, abs, rel, exact in walk(repo, pats, opts):
542 if src == 'f' and repo.dirstate.state(abs) == '?':
542 if src == 'f' and repo.dirstate.state(abs) == '?':
543 add.append(abs)
543 add.append(abs)
544 if ui.verbose or not exact:
544 if ui.verbose or not exact:
545 ui.status(_('adding %s\n') % ((pats and rel) or abs))
545 ui.status(_('adding %s\n') % ((pats and rel) or abs))
546 if repo.dirstate.state(abs) != 'r' and not os.path.exists(rel):
546 if repo.dirstate.state(abs) != 'r' and not os.path.exists(rel):
547 remove.append(abs)
547 remove.append(abs)
548 if ui.verbose or not exact:
548 if ui.verbose or not exact:
549 ui.status(_('removing %s\n') % ((pats and rel) or abs))
549 ui.status(_('removing %s\n') % ((pats and rel) or abs))
550 repo.add(add, wlock=wlock)
550 repo.add(add, wlock=wlock)
551 repo.remove(remove, wlock=wlock)
551 repo.remove(remove, wlock=wlock)
552
552
553 def annotate(ui, repo, *pats, **opts):
553 def annotate(ui, repo, *pats, **opts):
554 """show changeset information per file line
554 """show changeset information per file line
555
555
556 List changes in files, showing the revision id responsible for each line
556 List changes in files, showing the revision id responsible for each line
557
557
558 This command is useful to discover who did a change or when a change took
558 This command is useful to discover who did a change or when a change took
559 place.
559 place.
560
560
561 Without the -a option, annotate will avoid processing files it
561 Without the -a option, annotate will avoid processing files it
562 detects as binary. With -a, annotate will generate an annotation
562 detects as binary. With -a, annotate will generate an annotation
563 anyway, probably with undesirable results.
563 anyway, probably with undesirable results.
564 """
564 """
565 def getnode(rev):
565 def getnode(rev):
566 return short(repo.changelog.node(rev))
566 return short(repo.changelog.node(rev))
567
567
568 ucache = {}
568 ucache = {}
569 def getname(rev):
569 def getname(rev):
570 cl = repo.changelog.read(repo.changelog.node(rev))
570 cl = repo.changelog.read(repo.changelog.node(rev))
571 return trimuser(ui, cl[1], rev, ucache)
571 return trimuser(ui, cl[1], rev, ucache)
572
572
573 dcache = {}
573 dcache = {}
574 def getdate(rev):
574 def getdate(rev):
575 datestr = dcache.get(rev)
575 datestr = dcache.get(rev)
576 if datestr is None:
576 if datestr is None:
577 cl = repo.changelog.read(repo.changelog.node(rev))
577 cl = repo.changelog.read(repo.changelog.node(rev))
578 datestr = dcache[rev] = util.datestr(cl[2])
578 datestr = dcache[rev] = util.datestr(cl[2])
579 return datestr
579 return datestr
580
580
581 if not pats:
581 if not pats:
582 raise util.Abort(_('at least one file name or pattern required'))
582 raise util.Abort(_('at least one file name or pattern required'))
583
583
584 opmap = [['user', getname], ['number', str], ['changeset', getnode],
584 opmap = [['user', getname], ['number', str], ['changeset', getnode],
585 ['date', getdate]]
585 ['date', getdate]]
586 if not opts['user'] and not opts['changeset'] and not opts['date']:
586 if not opts['user'] and not opts['changeset'] and not opts['date']:
587 opts['number'] = 1
587 opts['number'] = 1
588
588
589 if opts['rev']:
589 if opts['rev']:
590 node = repo.changelog.lookup(opts['rev'])
590 node = repo.changelog.lookup(opts['rev'])
591 else:
591 else:
592 node = repo.dirstate.parents()[0]
592 node = repo.dirstate.parents()[0]
593 change = repo.changelog.read(node)
593 change = repo.changelog.read(node)
594 mmap = repo.manifest.read(change[0])
594 mmap = repo.manifest.read(change[0])
595
595
596 for src, abs, rel, exact in walk(repo, pats, opts):
596 for src, abs, rel, exact in walk(repo, pats, opts):
597 if abs not in mmap:
597 if abs not in mmap:
598 ui.warn(_("warning: %s is not in the repository!\n") %
598 ui.warn(_("warning: %s is not in the repository!\n") %
599 ((pats and rel) or abs))
599 ((pats and rel) or abs))
600 continue
600 continue
601
601
602 f = repo.file(abs)
602 f = repo.file(abs)
603 if not opts['text'] and util.binary(f.read(mmap[abs])):
603 if not opts['text'] and util.binary(f.read(mmap[abs])):
604 ui.write(_("%s: binary file\n") % ((pats and rel) or abs))
604 ui.write(_("%s: binary file\n") % ((pats and rel) or abs))
605 continue
605 continue
606
606
607 lines = f.annotate(mmap[abs])
607 lines = f.annotate(mmap[abs])
608 pieces = []
608 pieces = []
609
609
610 for o, f in opmap:
610 for o, f in opmap:
611 if opts[o]:
611 if opts[o]:
612 l = [f(n) for n, dummy in lines]
612 l = [f(n) for n, dummy in lines]
613 if l:
613 if l:
614 m = max(map(len, l))
614 m = max(map(len, l))
615 pieces.append(["%*s" % (m, x) for x in l])
615 pieces.append(["%*s" % (m, x) for x in l])
616
616
617 if pieces:
617 if pieces:
618 for p, l in zip(zip(*pieces), lines):
618 for p, l in zip(zip(*pieces), lines):
619 ui.write("%s: %s" % (" ".join(p), l[1]))
619 ui.write("%s: %s" % (" ".join(p), l[1]))
620
620
621 def bundle(ui, repo, fname, dest="default-push", **opts):
621 def bundle(ui, repo, fname, dest="default-push", **opts):
622 """create a changegroup file
622 """create a changegroup file
623
623
624 Generate a compressed changegroup file collecting all changesets
624 Generate a compressed changegroup file collecting all changesets
625 not found in the other repository.
625 not found in the other repository.
626
626
627 This file can then be transferred using conventional means and
627 This file can then be transferred using conventional means and
628 applied to another repository with the unbundle command. This is
628 applied to another repository with the unbundle command. This is
629 useful when native push and pull are not available or when
629 useful when native push and pull are not available or when
630 exporting an entire repository is undesirable. The standard file
630 exporting an entire repository is undesirable. The standard file
631 extension is ".hg".
631 extension is ".hg".
632
632
633 Unlike import/export, this exactly preserves all changeset
633 Unlike import/export, this exactly preserves all changeset
634 contents including permissions, rename data, and revision history.
634 contents including permissions, rename data, and revision history.
635 """
635 """
636 f = open(fname, "wb")
636 f = open(fname, "wb")
637 dest = ui.expandpath(dest, repo.root)
637 dest = ui.expandpath(dest, repo.root)
638 other = hg.repository(ui, dest)
638 other = hg.repository(ui, dest)
639 o = repo.findoutgoing(other)
639 o = repo.findoutgoing(other)
640 cg = repo.changegroup(o, 'bundle')
640 cg = repo.changegroup(o, 'bundle')
641
641
642 try:
642 try:
643 f.write("HG10")
643 f.write("HG10")
644 z = bz2.BZ2Compressor(9)
644 z = bz2.BZ2Compressor(9)
645 while 1:
645 while 1:
646 chunk = cg.read(4096)
646 chunk = cg.read(4096)
647 if not chunk:
647 if not chunk:
648 break
648 break
649 f.write(z.compress(chunk))
649 f.write(z.compress(chunk))
650 f.write(z.flush())
650 f.write(z.flush())
651 except:
651 except:
652 os.unlink(fname)
652 os.unlink(fname)
653 raise
653 raise
654
654
655 def cat(ui, repo, file1, *pats, **opts):
655 def cat(ui, repo, file1, *pats, **opts):
656 """output the latest or given revisions of files
656 """output the latest or given revisions of files
657
657
658 Print the specified files as they were at the given revision.
658 Print the specified files as they were at the given revision.
659 If no revision is given then the tip is used.
659 If no revision is given then the tip is used.
660
660
661 Output may be to a file, in which case the name of the file is
661 Output may be to a file, in which case the name of the file is
662 given using a format string. The formatting rules are the same as
662 given using a format string. The formatting rules are the same as
663 for the export command, with the following additions:
663 for the export command, with the following additions:
664
664
665 %s basename of file being printed
665 %s basename of file being printed
666 %d dirname of file being printed, or '.' if in repo root
666 %d dirname of file being printed, or '.' if in repo root
667 %p root-relative path name of file being printed
667 %p root-relative path name of file being printed
668 """
668 """
669 mf = {}
669 mf = {}
670 rev = opts['rev']
670 rev = opts['rev']
671 if rev:
671 if rev:
672 node = repo.lookup(rev)
672 node = repo.lookup(rev)
673 else:
673 else:
674 node = repo.changelog.tip()
674 node = repo.changelog.tip()
675 change = repo.changelog.read(node)
675 change = repo.changelog.read(node)
676 mf = repo.manifest.read(change[0])
676 mf = repo.manifest.read(change[0])
677 for src, abs, rel, exact in walk(repo, (file1,) + pats, opts, node):
677 for src, abs, rel, exact in walk(repo, (file1,) + pats, opts, node):
678 r = repo.file(abs)
678 r = repo.file(abs)
679 n = mf[abs]
679 n = mf[abs]
680 fp = make_file(repo, r, opts['output'], node=n, pathname=abs)
680 fp = make_file(repo, r, opts['output'], node=n, pathname=abs)
681 fp.write(r.read(n))
681 fp.write(r.read(n))
682
682
683 def clone(ui, source, dest=None, **opts):
683 def clone(ui, source, dest=None, **opts):
684 """make a copy of an existing repository
684 """make a copy of an existing repository
685
685
686 Create a copy of an existing repository in a new directory.
686 Create a copy of an existing repository in a new directory.
687
687
688 If no destination directory name is specified, it defaults to the
688 If no destination directory name is specified, it defaults to the
689 basename of the source.
689 basename of the source.
690
690
691 The location of the source is added to the new repository's
691 The location of the source is added to the new repository's
692 .hg/hgrc file, as the default to be used for future pulls.
692 .hg/hgrc file, as the default to be used for future pulls.
693
693
694 For efficiency, hardlinks are used for cloning whenever the source
694 For efficiency, hardlinks are used for cloning whenever the source
695 and destination are on the same filesystem. Some filesystems,
695 and destination are on the same filesystem. Some filesystems,
696 such as AFS, implement hardlinking incorrectly, but do not report
696 such as AFS, implement hardlinking incorrectly, but do not report
697 errors. In these cases, use the --pull option to avoid
697 errors. In these cases, use the --pull option to avoid
698 hardlinking.
698 hardlinking.
699
699
700 See pull for valid source format details.
700 See pull for valid source format details.
701 """
701 """
702 if dest is None:
702 if dest is None:
703 dest = os.path.basename(os.path.normpath(source))
703 dest = os.path.basename(os.path.normpath(source))
704
704
705 if os.path.exists(dest):
705 if os.path.exists(dest):
706 raise util.Abort(_("destination '%s' already exists"), dest)
706 raise util.Abort(_("destination '%s' already exists"), dest)
707
707
708 dest = os.path.realpath(dest)
708 dest = os.path.realpath(dest)
709
709
710 class Dircleanup(object):
710 class Dircleanup(object):
711 def __init__(self, dir_):
711 def __init__(self, dir_):
712 self.rmtree = shutil.rmtree
712 self.rmtree = shutil.rmtree
713 self.dir_ = dir_
713 self.dir_ = dir_
714 os.mkdir(dir_)
714 os.mkdir(dir_)
715 def close(self):
715 def close(self):
716 self.dir_ = None
716 self.dir_ = None
717 def __del__(self):
717 def __del__(self):
718 if self.dir_:
718 if self.dir_:
719 self.rmtree(self.dir_, True)
719 self.rmtree(self.dir_, True)
720
720
721 if opts['ssh']:
721 if opts['ssh']:
722 ui.setconfig("ui", "ssh", opts['ssh'])
722 ui.setconfig("ui", "ssh", opts['ssh'])
723 if opts['remotecmd']:
723 if opts['remotecmd']:
724 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
724 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
725
725
726 if not os.path.exists(source):
726 if not os.path.exists(source):
727 source = ui.expandpath(source)
727 source = ui.expandpath(source)
728
728
729 d = Dircleanup(dest)
729 d = Dircleanup(dest)
730 abspath = source
730 abspath = source
731 other = hg.repository(ui, source)
731 other = hg.repository(ui, source)
732
732
733 copy = False
733 copy = False
734 if other.dev() != -1:
734 if other.dev() != -1:
735 abspath = os.path.abspath(source)
735 abspath = os.path.abspath(source)
736 if not opts['pull'] and not opts['rev']:
736 if not opts['pull'] and not opts['rev']:
737 copy = True
737 copy = True
738
738
739 if copy:
739 if copy:
740 try:
740 try:
741 # we use a lock here because if we race with commit, we
741 # we use a lock here because if we race with commit, we
742 # can end up with extra data in the cloned revlogs that's
742 # can end up with extra data in the cloned revlogs that's
743 # not pointed to by changesets, thus causing verify to
743 # not pointed to by changesets, thus causing verify to
744 # fail
744 # fail
745 l1 = other.lock()
745 l1 = other.lock()
746 except lock.LockException:
746 except lock.LockException:
747 copy = False
747 copy = False
748
748
749 if copy:
749 if copy:
750 # we lock here to avoid premature writing to the target
750 # we lock here to avoid premature writing to the target
751 os.mkdir(os.path.join(dest, ".hg"))
751 os.mkdir(os.path.join(dest, ".hg"))
752 l2 = lock.lock(os.path.join(dest, ".hg", "lock"))
752 l2 = lock.lock(os.path.join(dest, ".hg", "lock"))
753
753
754 files = "data 00manifest.d 00manifest.i 00changelog.d 00changelog.i"
754 files = "data 00manifest.d 00manifest.i 00changelog.d 00changelog.i"
755 for f in files.split():
755 for f in files.split():
756 src = os.path.join(source, ".hg", f)
756 src = os.path.join(source, ".hg", f)
757 dst = os.path.join(dest, ".hg", f)
757 dst = os.path.join(dest, ".hg", f)
758 try:
758 try:
759 util.copyfiles(src, dst)
759 util.copyfiles(src, dst)
760 except OSError, inst:
760 except OSError, inst:
761 if inst.errno != errno.ENOENT:
761 if inst.errno != errno.ENOENT:
762 raise
762 raise
763
763
764 repo = hg.repository(ui, dest)
764 repo = hg.repository(ui, dest)
765
765
766 else:
766 else:
767 revs = None
767 revs = None
768 if opts['rev']:
768 if opts['rev']:
769 if not other.local():
769 if not other.local():
770 error = _("clone -r not supported yet for remote repositories.")
770 error = _("clone -r not supported yet for remote repositories.")
771 raise util.Abort(error)
771 raise util.Abort(error)
772 else:
772 else:
773 revs = [other.lookup(rev) for rev in opts['rev']]
773 revs = [other.lookup(rev) for rev in opts['rev']]
774 repo = hg.repository(ui, dest, create=1)
774 repo = hg.repository(ui, dest, create=1)
775 repo.pull(other, heads = revs)
775 repo.pull(other, heads = revs)
776
776
777 f = repo.opener("hgrc", "w", text=True)
777 f = repo.opener("hgrc", "w", text=True)
778 f.write("[paths]\n")
778 f.write("[paths]\n")
779 f.write("default = %s\n" % abspath)
779 f.write("default = %s\n" % abspath)
780 f.close()
780 f.close()
781
781
782 if not opts['noupdate']:
782 if not opts['noupdate']:
783 update(ui, repo)
783 update(ui, repo)
784
784
785 d.close()
785 d.close()
786
786
787 def commit(ui, repo, *pats, **opts):
787 def commit(ui, repo, *pats, **opts):
788 """commit the specified files or all outstanding changes
788 """commit the specified files or all outstanding changes
789
789
790 Commit changes to the given files into the repository.
790 Commit changes to the given files into the repository.
791
791
792 If a list of files is omitted, all changes reported by "hg status"
792 If a list of files is omitted, all changes reported by "hg status"
793 will be commited.
793 will be commited.
794
794
795 The HGEDITOR or EDITOR environment variables are used to start an
795 The HGEDITOR or EDITOR environment variables are used to start an
796 editor to add a commit comment.
796 editor to add a commit comment.
797 """
797 """
798 message = opts['message']
798 message = opts['message']
799 logfile = opts['logfile']
799 logfile = opts['logfile']
800
800
801 if message and logfile:
801 if message and logfile:
802 raise util.Abort(_('options --message and --logfile are mutually '
802 raise util.Abort(_('options --message and --logfile are mutually '
803 'exclusive'))
803 'exclusive'))
804 if not message and logfile:
804 if not message and logfile:
805 try:
805 try:
806 if logfile == '-':
806 if logfile == '-':
807 message = sys.stdin.read()
807 message = sys.stdin.read()
808 else:
808 else:
809 message = open(logfile).read()
809 message = open(logfile).read()
810 except IOError, inst:
810 except IOError, inst:
811 raise util.Abort(_("can't read commit message '%s': %s") %
811 raise util.Abort(_("can't read commit message '%s': %s") %
812 (logfile, inst.strerror))
812 (logfile, inst.strerror))
813
813
814 if opts['addremove']:
814 if opts['addremove']:
815 addremove(ui, repo, *pats, **opts)
815 addremove(ui, repo, *pats, **opts)
816 fns, match, anypats = matchpats(repo, pats, opts)
816 fns, match, anypats = matchpats(repo, pats, opts)
817 if pats:
817 if pats:
818 modified, added, removed, deleted, unknown = (
818 modified, added, removed, deleted, unknown = (
819 repo.changes(files=fns, match=match))
819 repo.changes(files=fns, match=match))
820 files = modified + added + removed
820 files = modified + added + removed
821 else:
821 else:
822 files = []
822 files = []
823 try:
823 try:
824 repo.commit(files, message, opts['user'], opts['date'], match)
824 repo.commit(files, message, opts['user'], opts['date'], match)
825 except ValueError, inst:
825 except ValueError, inst:
826 raise util.Abort(str(inst))
826 raise util.Abort(str(inst))
827
827
828 def docopy(ui, repo, pats, opts):
828 def docopy(ui, repo, pats, opts, wlock):
829 # called with the repo lock held
829 cwd = repo.getcwd()
830 cwd = repo.getcwd()
830 errors = 0
831 errors = 0
831 copied = []
832 copied = []
832 targets = {}
833 targets = {}
833
834
834 def okaytocopy(abs, rel, exact):
835 def okaytocopy(abs, rel, exact):
835 reasons = {'?': _('is not managed'),
836 reasons = {'?': _('is not managed'),
836 'a': _('has been marked for add'),
837 'a': _('has been marked for add'),
837 'r': _('has been marked for remove')}
838 'r': _('has been marked for remove')}
838 state = repo.dirstate.state(abs)
839 state = repo.dirstate.state(abs)
839 reason = reasons.get(state)
840 reason = reasons.get(state)
840 if reason:
841 if reason:
841 if state == 'a':
842 if state == 'a':
842 origsrc = repo.dirstate.copied(abs)
843 origsrc = repo.dirstate.copied(abs)
843 if origsrc is not None:
844 if origsrc is not None:
844 return origsrc
845 return origsrc
845 if exact:
846 if exact:
846 ui.warn(_('%s: not copying - file %s\n') % (rel, reason))
847 ui.warn(_('%s: not copying - file %s\n') % (rel, reason))
847 else:
848 else:
848 return abs
849 return abs
849
850
850 def copy(origsrc, abssrc, relsrc, target, exact):
851 def copy(origsrc, abssrc, relsrc, target, exact):
851 abstarget = util.canonpath(repo.root, cwd, target)
852 abstarget = util.canonpath(repo.root, cwd, target)
852 reltarget = util.pathto(cwd, abstarget)
853 reltarget = util.pathto(cwd, abstarget)
853 prevsrc = targets.get(abstarget)
854 prevsrc = targets.get(abstarget)
854 if prevsrc is not None:
855 if prevsrc is not None:
855 ui.warn(_('%s: not overwriting - %s collides with %s\n') %
856 ui.warn(_('%s: not overwriting - %s collides with %s\n') %
856 (reltarget, abssrc, prevsrc))
857 (reltarget, abssrc, prevsrc))
857 return
858 return
858 if (not opts['after'] and os.path.exists(reltarget) or
859 if (not opts['after'] and os.path.exists(reltarget) or
859 opts['after'] and repo.dirstate.state(abstarget) not in '?r'):
860 opts['after'] and repo.dirstate.state(abstarget) not in '?r'):
860 if not opts['force']:
861 if not opts['force']:
861 ui.warn(_('%s: not overwriting - file exists\n') %
862 ui.warn(_('%s: not overwriting - file exists\n') %
862 reltarget)
863 reltarget)
863 return
864 return
864 if not opts['after']:
865 if not opts['after']:
865 os.unlink(reltarget)
866 os.unlink(reltarget)
866 if opts['after']:
867 if opts['after']:
867 if not os.path.exists(reltarget):
868 if not os.path.exists(reltarget):
868 return
869 return
869 else:
870 else:
870 targetdir = os.path.dirname(reltarget) or '.'
871 targetdir = os.path.dirname(reltarget) or '.'
871 if not os.path.isdir(targetdir):
872 if not os.path.isdir(targetdir):
872 os.makedirs(targetdir)
873 os.makedirs(targetdir)
873 try:
874 try:
874 shutil.copyfile(relsrc, reltarget)
875 restore = repo.dirstate.state(abstarget) == 'r'
875 shutil.copymode(relsrc, reltarget)
876 if restore:
877 repo.undelete([abstarget], wlock)
878 try:
879 shutil.copyfile(relsrc, reltarget)
880 shutil.copymode(relsrc, reltarget)
881 restore = False
882 finally:
883 if restore:
884 repo.remove([abstarget], wlock)
876 except shutil.Error, inst:
885 except shutil.Error, inst:
877 raise util.Abort(str(inst))
886 raise util.Abort(str(inst))
878 except IOError, inst:
887 except IOError, inst:
879 if inst.errno == errno.ENOENT:
888 if inst.errno == errno.ENOENT:
880 ui.warn(_('%s: deleted in working copy\n') % relsrc)
889 ui.warn(_('%s: deleted in working copy\n') % relsrc)
881 else:
890 else:
882 ui.warn(_('%s: cannot copy - %s\n') %
891 ui.warn(_('%s: cannot copy - %s\n') %
883 (relsrc, inst.strerror))
892 (relsrc, inst.strerror))
884 errors += 1
893 errors += 1
885 return
894 return
886 if ui.verbose or not exact:
895 if ui.verbose or not exact:
887 ui.status(_('copying %s to %s\n') % (relsrc, reltarget))
896 ui.status(_('copying %s to %s\n') % (relsrc, reltarget))
888 targets[abstarget] = abssrc
897 targets[abstarget] = abssrc
889 repo.copy(origsrc, abstarget)
898 if abstarget != origsrc:
899 repo.copy(origsrc, abstarget, wlock)
890 copied.append((abssrc, relsrc, exact))
900 copied.append((abssrc, relsrc, exact))
891
901
892 def targetpathfn(pat, dest, srcs):
902 def targetpathfn(pat, dest, srcs):
893 if os.path.isdir(pat):
903 if os.path.isdir(pat):
894 abspfx = util.canonpath(repo.root, cwd, pat)
904 abspfx = util.canonpath(repo.root, cwd, pat)
895 if destdirexists:
905 if destdirexists:
896 striplen = len(os.path.split(abspfx)[0])
906 striplen = len(os.path.split(abspfx)[0])
897 else:
907 else:
898 striplen = len(abspfx)
908 striplen = len(abspfx)
899 if striplen:
909 if striplen:
900 striplen += len(os.sep)
910 striplen += len(os.sep)
901 res = lambda p: os.path.join(dest, p[striplen:])
911 res = lambda p: os.path.join(dest, p[striplen:])
902 elif destdirexists:
912 elif destdirexists:
903 res = lambda p: os.path.join(dest, os.path.basename(p))
913 res = lambda p: os.path.join(dest, os.path.basename(p))
904 else:
914 else:
905 res = lambda p: dest
915 res = lambda p: dest
906 return res
916 return res
907
917
908 def targetpathafterfn(pat, dest, srcs):
918 def targetpathafterfn(pat, dest, srcs):
909 if util.patkind(pat, None)[0]:
919 if util.patkind(pat, None)[0]:
910 # a mercurial pattern
920 # a mercurial pattern
911 res = lambda p: os.path.join(dest, os.path.basename(p))
921 res = lambda p: os.path.join(dest, os.path.basename(p))
912 else:
922 else:
913 abspfx = util.canonpath(repo.root, cwd, pat)
923 abspfx = util.canonpath(repo.root, cwd, pat)
914 if len(abspfx) < len(srcs[0][0]):
924 if len(abspfx) < len(srcs[0][0]):
915 # A directory. Either the target path contains the last
925 # A directory. Either the target path contains the last
916 # component of the source path or it does not.
926 # component of the source path or it does not.
917 def evalpath(striplen):
927 def evalpath(striplen):
918 score = 0
928 score = 0
919 for s in srcs:
929 for s in srcs:
920 t = os.path.join(dest, s[0][striplen:])
930 t = os.path.join(dest, s[0][striplen:])
921 if os.path.exists(t):
931 if os.path.exists(t):
922 score += 1
932 score += 1
923 return score
933 return score
924
934
925 striplen = len(abspfx)
935 striplen = len(abspfx)
926 if striplen:
936 if striplen:
927 striplen += len(os.sep)
937 striplen += len(os.sep)
928 if os.path.isdir(os.path.join(dest, os.path.split(abspfx)[1])):
938 if os.path.isdir(os.path.join(dest, os.path.split(abspfx)[1])):
929 score = evalpath(striplen)
939 score = evalpath(striplen)
930 striplen1 = len(os.path.split(abspfx)[0])
940 striplen1 = len(os.path.split(abspfx)[0])
931 if striplen1:
941 if striplen1:
932 striplen1 += len(os.sep)
942 striplen1 += len(os.sep)
933 if evalpath(striplen1) > score:
943 if evalpath(striplen1) > score:
934 striplen = striplen1
944 striplen = striplen1
935 res = lambda p: os.path.join(dest, p[striplen:])
945 res = lambda p: os.path.join(dest, p[striplen:])
936 else:
946 else:
937 # a file
947 # a file
938 if destdirexists:
948 if destdirexists:
939 res = lambda p: os.path.join(dest, os.path.basename(p))
949 res = lambda p: os.path.join(dest, os.path.basename(p))
940 else:
950 else:
941 res = lambda p: dest
951 res = lambda p: dest
942 return res
952 return res
943
953
944
954
945 pats = list(pats)
955 pats = list(pats)
946 if not pats:
956 if not pats:
947 raise util.Abort(_('no source or destination specified'))
957 raise util.Abort(_('no source or destination specified'))
948 if len(pats) == 1:
958 if len(pats) == 1:
949 raise util.Abort(_('no destination specified'))
959 raise util.Abort(_('no destination specified'))
950 dest = pats.pop()
960 dest = pats.pop()
951 destdirexists = os.path.isdir(dest)
961 destdirexists = os.path.isdir(dest)
952 if (len(pats) > 1 or util.patkind(pats[0], None)[0]) and not destdirexists:
962 if (len(pats) > 1 or util.patkind(pats[0], None)[0]) and not destdirexists:
953 raise util.Abort(_('with multiple sources, destination must be an '
963 raise util.Abort(_('with multiple sources, destination must be an '
954 'existing directory'))
964 'existing directory'))
955 if opts['after']:
965 if opts['after']:
956 tfn = targetpathafterfn
966 tfn = targetpathafterfn
957 else:
967 else:
958 tfn = targetpathfn
968 tfn = targetpathfn
959 copylist = []
969 copylist = []
960 for pat in pats:
970 for pat in pats:
961 srcs = []
971 srcs = []
962 for tag, abssrc, relsrc, exact in walk(repo, [pat], opts):
972 for tag, abssrc, relsrc, exact in walk(repo, [pat], opts):
963 origsrc = okaytocopy(abssrc, relsrc, exact)
973 origsrc = okaytocopy(abssrc, relsrc, exact)
964 if origsrc:
974 if origsrc:
965 srcs.append((origsrc, abssrc, relsrc, exact))
975 srcs.append((origsrc, abssrc, relsrc, exact))
966 if not srcs:
976 if not srcs:
967 continue
977 continue
968 copylist.append((tfn(pat, dest, srcs), srcs))
978 copylist.append((tfn(pat, dest, srcs), srcs))
969 if not copylist:
979 if not copylist:
970 raise util.Abort(_('no files to copy'))
980 raise util.Abort(_('no files to copy'))
971
981
972 for targetpath, srcs in copylist:
982 for targetpath, srcs in copylist:
973 for origsrc, abssrc, relsrc, exact in srcs:
983 for origsrc, abssrc, relsrc, exact in srcs:
974 copy(origsrc, abssrc, relsrc, targetpath(abssrc), exact)
984 copy(origsrc, abssrc, relsrc, targetpath(abssrc), exact)
975
985
976 if errors:
986 if errors:
977 ui.warn(_('(consider using --after)\n'))
987 ui.warn(_('(consider using --after)\n'))
978 return errors, copied
988 return errors, copied
979
989
980 def copy(ui, repo, *pats, **opts):
990 def copy(ui, repo, *pats, **opts):
981 """mark files as copied for the next commit
991 """mark files as copied for the next commit
982
992
983 Mark dest as having copies of source files. If dest is a
993 Mark dest as having copies of source files. If dest is a
984 directory, copies are put in that directory. If dest is a file,
994 directory, copies are put in that directory. If dest is a file,
985 there can only be one source.
995 there can only be one source.
986
996
987 By default, this command copies the contents of files as they
997 By default, this command copies the contents of files as they
988 stand in the working directory. If invoked with --after, the
998 stand in the working directory. If invoked with --after, the
989 operation is recorded, but no copying is performed.
999 operation is recorded, but no copying is performed.
990
1000
991 This command takes effect in the next commit.
1001 This command takes effect in the next commit.
992
1002
993 NOTE: This command should be treated as experimental. While it
1003 NOTE: This command should be treated as experimental. While it
994 should properly record copied files, this information is not yet
1004 should properly record copied files, this information is not yet
995 fully used by merge, nor fully reported by log.
1005 fully used by merge, nor fully reported by log.
996 """
1006 """
997 errs, copied = docopy(ui, repo, pats, opts)
1007 try:
1008 wlock = repo.wlock(0)
1009 errs, copied = docopy(ui, repo, pats, opts, wlock)
1010 except lock.LockHeld, inst:
1011 ui.warn(_("repository lock held by %s\n") % inst.args[0])
1012 errs = 1
998 return errs
1013 return errs
999
1014
1000 def debugancestor(ui, index, rev1, rev2):
1015 def debugancestor(ui, index, rev1, rev2):
1001 """find the ancestor revision of two revisions in a given index"""
1016 """find the ancestor revision of two revisions in a given index"""
1002 r = revlog.revlog(util.opener(os.getcwd()), index, "")
1017 r = revlog.revlog(util.opener(os.getcwd()), index, "")
1003 a = r.ancestor(r.lookup(rev1), r.lookup(rev2))
1018 a = r.ancestor(r.lookup(rev1), r.lookup(rev2))
1004 ui.write("%d:%s\n" % (r.rev(a), hex(a)))
1019 ui.write("%d:%s\n" % (r.rev(a), hex(a)))
1005
1020
1006 def debugrebuildstate(ui, repo, rev=None):
1021 def debugrebuildstate(ui, repo, rev=None):
1007 """rebuild the dirstate as it would look like for the given revision"""
1022 """rebuild the dirstate as it would look like for the given revision"""
1008 if not rev:
1023 if not rev:
1009 rev = repo.changelog.tip()
1024 rev = repo.changelog.tip()
1010 else:
1025 else:
1011 rev = repo.lookup(rev)
1026 rev = repo.lookup(rev)
1012 change = repo.changelog.read(rev)
1027 change = repo.changelog.read(rev)
1013 n = change[0]
1028 n = change[0]
1014 files = repo.manifest.readflags(n)
1029 files = repo.manifest.readflags(n)
1015 wlock = repo.wlock()
1030 wlock = repo.wlock()
1016 repo.dirstate.rebuild(rev, files.iteritems())
1031 repo.dirstate.rebuild(rev, files.iteritems())
1017
1032
1018 def debugcheckstate(ui, repo):
1033 def debugcheckstate(ui, repo):
1019 """validate the correctness of the current dirstate"""
1034 """validate the correctness of the current dirstate"""
1020 parent1, parent2 = repo.dirstate.parents()
1035 parent1, parent2 = repo.dirstate.parents()
1021 repo.dirstate.read()
1036 repo.dirstate.read()
1022 dc = repo.dirstate.map
1037 dc = repo.dirstate.map
1023 keys = dc.keys()
1038 keys = dc.keys()
1024 keys.sort()
1039 keys.sort()
1025 m1n = repo.changelog.read(parent1)[0]
1040 m1n = repo.changelog.read(parent1)[0]
1026 m2n = repo.changelog.read(parent2)[0]
1041 m2n = repo.changelog.read(parent2)[0]
1027 m1 = repo.manifest.read(m1n)
1042 m1 = repo.manifest.read(m1n)
1028 m2 = repo.manifest.read(m2n)
1043 m2 = repo.manifest.read(m2n)
1029 errors = 0
1044 errors = 0
1030 for f in dc:
1045 for f in dc:
1031 state = repo.dirstate.state(f)
1046 state = repo.dirstate.state(f)
1032 if state in "nr" and f not in m1:
1047 if state in "nr" and f not in m1:
1033 ui.warn(_("%s in state %s, but not in manifest1\n") % (f, state))
1048 ui.warn(_("%s in state %s, but not in manifest1\n") % (f, state))
1034 errors += 1
1049 errors += 1
1035 if state in "a" and f in m1:
1050 if state in "a" and f in m1:
1036 ui.warn(_("%s in state %s, but also in manifest1\n") % (f, state))
1051 ui.warn(_("%s in state %s, but also in manifest1\n") % (f, state))
1037 errors += 1
1052 errors += 1
1038 if state in "m" and f not in m1 and f not in m2:
1053 if state in "m" and f not in m1 and f not in m2:
1039 ui.warn(_("%s in state %s, but not in either manifest\n") %
1054 ui.warn(_("%s in state %s, but not in either manifest\n") %
1040 (f, state))
1055 (f, state))
1041 errors += 1
1056 errors += 1
1042 for f in m1:
1057 for f in m1:
1043 state = repo.dirstate.state(f)
1058 state = repo.dirstate.state(f)
1044 if state not in "nrm":
1059 if state not in "nrm":
1045 ui.warn(_("%s in manifest1, but listed as state %s") % (f, state))
1060 ui.warn(_("%s in manifest1, but listed as state %s") % (f, state))
1046 errors += 1
1061 errors += 1
1047 if errors:
1062 if errors:
1048 error = _(".hg/dirstate inconsistent with current parent's manifest")
1063 error = _(".hg/dirstate inconsistent with current parent's manifest")
1049 raise util.Abort(error)
1064 raise util.Abort(error)
1050
1065
1051 def debugconfig(ui):
1066 def debugconfig(ui):
1052 """show combined config settings from all hgrc files"""
1067 """show combined config settings from all hgrc files"""
1053 try:
1068 try:
1054 repo = hg.repository(ui)
1069 repo = hg.repository(ui)
1055 except hg.RepoError:
1070 except hg.RepoError:
1056 pass
1071 pass
1057 for section, name, value in ui.walkconfig():
1072 for section, name, value in ui.walkconfig():
1058 ui.write('%s.%s=%s\n' % (section, name, value))
1073 ui.write('%s.%s=%s\n' % (section, name, value))
1059
1074
1060 def debugsetparents(ui, repo, rev1, rev2=None):
1075 def debugsetparents(ui, repo, rev1, rev2=None):
1061 """manually set the parents of the current working directory
1076 """manually set the parents of the current working directory
1062
1077
1063 This is useful for writing repository conversion tools, but should
1078 This is useful for writing repository conversion tools, but should
1064 be used with care.
1079 be used with care.
1065 """
1080 """
1066
1081
1067 if not rev2:
1082 if not rev2:
1068 rev2 = hex(nullid)
1083 rev2 = hex(nullid)
1069
1084
1070 repo.dirstate.setparents(repo.lookup(rev1), repo.lookup(rev2))
1085 repo.dirstate.setparents(repo.lookup(rev1), repo.lookup(rev2))
1071
1086
1072 def debugstate(ui, repo):
1087 def debugstate(ui, repo):
1073 """show the contents of the current dirstate"""
1088 """show the contents of the current dirstate"""
1074 repo.dirstate.read()
1089 repo.dirstate.read()
1075 dc = repo.dirstate.map
1090 dc = repo.dirstate.map
1076 keys = dc.keys()
1091 keys = dc.keys()
1077 keys.sort()
1092 keys.sort()
1078 for file_ in keys:
1093 for file_ in keys:
1079 ui.write("%c %3o %10d %s %s\n"
1094 ui.write("%c %3o %10d %s %s\n"
1080 % (dc[file_][0], dc[file_][1] & 0777, dc[file_][2],
1095 % (dc[file_][0], dc[file_][1] & 0777, dc[file_][2],
1081 time.strftime("%x %X",
1096 time.strftime("%x %X",
1082 time.localtime(dc[file_][3])), file_))
1097 time.localtime(dc[file_][3])), file_))
1083 for f in repo.dirstate.copies:
1098 for f in repo.dirstate.copies:
1084 ui.write(_("copy: %s -> %s\n") % (repo.dirstate.copies[f], f))
1099 ui.write(_("copy: %s -> %s\n") % (repo.dirstate.copies[f], f))
1085
1100
1086 def debugdata(ui, file_, rev):
1101 def debugdata(ui, file_, rev):
1087 """dump the contents of an data file revision"""
1102 """dump the contents of an data file revision"""
1088 r = revlog.revlog(util.opener(os.getcwd()), file_[:-2] + ".i", file_)
1103 r = revlog.revlog(util.opener(os.getcwd()), file_[:-2] + ".i", file_)
1089 try:
1104 try:
1090 ui.write(r.revision(r.lookup(rev)))
1105 ui.write(r.revision(r.lookup(rev)))
1091 except KeyError:
1106 except KeyError:
1092 raise util.Abort(_('invalid revision identifier %s'), rev)
1107 raise util.Abort(_('invalid revision identifier %s'), rev)
1093
1108
1094 def debugindex(ui, file_):
1109 def debugindex(ui, file_):
1095 """dump the contents of an index file"""
1110 """dump the contents of an index file"""
1096 r = revlog.revlog(util.opener(os.getcwd()), file_, "")
1111 r = revlog.revlog(util.opener(os.getcwd()), file_, "")
1097 ui.write(" rev offset length base linkrev" +
1112 ui.write(" rev offset length base linkrev" +
1098 " nodeid p1 p2\n")
1113 " nodeid p1 p2\n")
1099 for i in range(r.count()):
1114 for i in range(r.count()):
1100 e = r.index[i]
1115 e = r.index[i]
1101 ui.write("% 6d % 9d % 7d % 6d % 7d %s %s %s\n" % (
1116 ui.write("% 6d % 9d % 7d % 6d % 7d %s %s %s\n" % (
1102 i, e[0], e[1], e[2], e[3],
1117 i, e[0], e[1], e[2], e[3],
1103 short(e[6]), short(e[4]), short(e[5])))
1118 short(e[6]), short(e[4]), short(e[5])))
1104
1119
1105 def debugindexdot(ui, file_):
1120 def debugindexdot(ui, file_):
1106 """dump an index DAG as a .dot file"""
1121 """dump an index DAG as a .dot file"""
1107 r = revlog.revlog(util.opener(os.getcwd()), file_, "")
1122 r = revlog.revlog(util.opener(os.getcwd()), file_, "")
1108 ui.write("digraph G {\n")
1123 ui.write("digraph G {\n")
1109 for i in range(r.count()):
1124 for i in range(r.count()):
1110 e = r.index[i]
1125 e = r.index[i]
1111 ui.write("\t%d -> %d\n" % (r.rev(e[4]), i))
1126 ui.write("\t%d -> %d\n" % (r.rev(e[4]), i))
1112 if e[5] != nullid:
1127 if e[5] != nullid:
1113 ui.write("\t%d -> %d\n" % (r.rev(e[5]), i))
1128 ui.write("\t%d -> %d\n" % (r.rev(e[5]), i))
1114 ui.write("}\n")
1129 ui.write("}\n")
1115
1130
1116 def debugrename(ui, repo, file, rev=None):
1131 def debugrename(ui, repo, file, rev=None):
1117 """dump rename information"""
1132 """dump rename information"""
1118 r = repo.file(relpath(repo, [file])[0])
1133 r = repo.file(relpath(repo, [file])[0])
1119 if rev:
1134 if rev:
1120 try:
1135 try:
1121 # assume all revision numbers are for changesets
1136 # assume all revision numbers are for changesets
1122 n = repo.lookup(rev)
1137 n = repo.lookup(rev)
1123 change = repo.changelog.read(n)
1138 change = repo.changelog.read(n)
1124 m = repo.manifest.read(change[0])
1139 m = repo.manifest.read(change[0])
1125 n = m[relpath(repo, [file])[0]]
1140 n = m[relpath(repo, [file])[0]]
1126 except (hg.RepoError, KeyError):
1141 except (hg.RepoError, KeyError):
1127 n = r.lookup(rev)
1142 n = r.lookup(rev)
1128 else:
1143 else:
1129 n = r.tip()
1144 n = r.tip()
1130 m = r.renamed(n)
1145 m = r.renamed(n)
1131 if m:
1146 if m:
1132 ui.write(_("renamed from %s:%s\n") % (m[0], hex(m[1])))
1147 ui.write(_("renamed from %s:%s\n") % (m[0], hex(m[1])))
1133 else:
1148 else:
1134 ui.write(_("not renamed\n"))
1149 ui.write(_("not renamed\n"))
1135
1150
1136 def debugwalk(ui, repo, *pats, **opts):
1151 def debugwalk(ui, repo, *pats, **opts):
1137 """show how files match on given patterns"""
1152 """show how files match on given patterns"""
1138 items = list(walk(repo, pats, opts))
1153 items = list(walk(repo, pats, opts))
1139 if not items:
1154 if not items:
1140 return
1155 return
1141 fmt = '%%s %%-%ds %%-%ds %%s' % (
1156 fmt = '%%s %%-%ds %%-%ds %%s' % (
1142 max([len(abs) for (src, abs, rel, exact) in items]),
1157 max([len(abs) for (src, abs, rel, exact) in items]),
1143 max([len(rel) for (src, abs, rel, exact) in items]))
1158 max([len(rel) for (src, abs, rel, exact) in items]))
1144 for src, abs, rel, exact in items:
1159 for src, abs, rel, exact in items:
1145 line = fmt % (src, abs, rel, exact and 'exact' or '')
1160 line = fmt % (src, abs, rel, exact and 'exact' or '')
1146 ui.write("%s\n" % line.rstrip())
1161 ui.write("%s\n" % line.rstrip())
1147
1162
1148 def diff(ui, repo, *pats, **opts):
1163 def diff(ui, repo, *pats, **opts):
1149 """diff repository (or selected files)
1164 """diff repository (or selected files)
1150
1165
1151 Show differences between revisions for the specified files.
1166 Show differences between revisions for the specified files.
1152
1167
1153 Differences between files are shown using the unified diff format.
1168 Differences between files are shown using the unified diff format.
1154
1169
1155 When two revision arguments are given, then changes are shown
1170 When two revision arguments are given, then changes are shown
1156 between those revisions. If only one revision is specified then
1171 between those revisions. If only one revision is specified then
1157 that revision is compared to the working directory, and, when no
1172 that revision is compared to the working directory, and, when no
1158 revisions are specified, the working directory files are compared
1173 revisions are specified, the working directory files are compared
1159 to its parent.
1174 to its parent.
1160
1175
1161 Without the -a option, diff will avoid generating diffs of files
1176 Without the -a option, diff will avoid generating diffs of files
1162 it detects as binary. With -a, diff will generate a diff anyway,
1177 it detects as binary. With -a, diff will generate a diff anyway,
1163 probably with undesirable results.
1178 probably with undesirable results.
1164 """
1179 """
1165 node1, node2 = None, None
1180 node1, node2 = None, None
1166 revs = [repo.lookup(x) for x in opts['rev']]
1181 revs = [repo.lookup(x) for x in opts['rev']]
1167
1182
1168 if len(revs) > 0:
1183 if len(revs) > 0:
1169 node1 = revs[0]
1184 node1 = revs[0]
1170 if len(revs) > 1:
1185 if len(revs) > 1:
1171 node2 = revs[1]
1186 node2 = revs[1]
1172 if len(revs) > 2:
1187 if len(revs) > 2:
1173 raise util.Abort(_("too many revisions to diff"))
1188 raise util.Abort(_("too many revisions to diff"))
1174
1189
1175 fns, matchfn, anypats = matchpats(repo, pats, opts)
1190 fns, matchfn, anypats = matchpats(repo, pats, opts)
1176
1191
1177 dodiff(sys.stdout, ui, repo, node1, node2, fns, match=matchfn,
1192 dodiff(sys.stdout, ui, repo, node1, node2, fns, match=matchfn,
1178 text=opts['text'], opts=opts)
1193 text=opts['text'], opts=opts)
1179
1194
1180 def doexport(ui, repo, changeset, seqno, total, revwidth, opts):
1195 def doexport(ui, repo, changeset, seqno, total, revwidth, opts):
1181 node = repo.lookup(changeset)
1196 node = repo.lookup(changeset)
1182 parents = [p for p in repo.changelog.parents(node) if p != nullid]
1197 parents = [p for p in repo.changelog.parents(node) if p != nullid]
1183 if opts['switch_parent']:
1198 if opts['switch_parent']:
1184 parents.reverse()
1199 parents.reverse()
1185 prev = (parents and parents[0]) or nullid
1200 prev = (parents and parents[0]) or nullid
1186 change = repo.changelog.read(node)
1201 change = repo.changelog.read(node)
1187
1202
1188 fp = make_file(repo, repo.changelog, opts['output'],
1203 fp = make_file(repo, repo.changelog, opts['output'],
1189 node=node, total=total, seqno=seqno,
1204 node=node, total=total, seqno=seqno,
1190 revwidth=revwidth)
1205 revwidth=revwidth)
1191 if fp != sys.stdout:
1206 if fp != sys.stdout:
1192 ui.note("%s\n" % fp.name)
1207 ui.note("%s\n" % fp.name)
1193
1208
1194 fp.write("# HG changeset patch\n")
1209 fp.write("# HG changeset patch\n")
1195 fp.write("# User %s\n" % change[1])
1210 fp.write("# User %s\n" % change[1])
1196 fp.write("# Node ID %s\n" % hex(node))
1211 fp.write("# Node ID %s\n" % hex(node))
1197 fp.write("# Parent %s\n" % hex(prev))
1212 fp.write("# Parent %s\n" % hex(prev))
1198 if len(parents) > 1:
1213 if len(parents) > 1:
1199 fp.write("# Parent %s\n" % hex(parents[1]))
1214 fp.write("# Parent %s\n" % hex(parents[1]))
1200 fp.write(change[4].rstrip())
1215 fp.write(change[4].rstrip())
1201 fp.write("\n\n")
1216 fp.write("\n\n")
1202
1217
1203 dodiff(fp, ui, repo, prev, node, text=opts['text'])
1218 dodiff(fp, ui, repo, prev, node, text=opts['text'])
1204 if fp != sys.stdout:
1219 if fp != sys.stdout:
1205 fp.close()
1220 fp.close()
1206
1221
1207 def export(ui, repo, *changesets, **opts):
1222 def export(ui, repo, *changesets, **opts):
1208 """dump the header and diffs for one or more changesets
1223 """dump the header and diffs for one or more changesets
1209
1224
1210 Print the changeset header and diffs for one or more revisions.
1225 Print the changeset header and diffs for one or more revisions.
1211
1226
1212 The information shown in the changeset header is: author,
1227 The information shown in the changeset header is: author,
1213 changeset hash, parent and commit comment.
1228 changeset hash, parent and commit comment.
1214
1229
1215 Output may be to a file, in which case the name of the file is
1230 Output may be to a file, in which case the name of the file is
1216 given using a format string. The formatting rules are as follows:
1231 given using a format string. The formatting rules are as follows:
1217
1232
1218 %% literal "%" character
1233 %% literal "%" character
1219 %H changeset hash (40 bytes of hexadecimal)
1234 %H changeset hash (40 bytes of hexadecimal)
1220 %N number of patches being generated
1235 %N number of patches being generated
1221 %R changeset revision number
1236 %R changeset revision number
1222 %b basename of the exporting repository
1237 %b basename of the exporting repository
1223 %h short-form changeset hash (12 bytes of hexadecimal)
1238 %h short-form changeset hash (12 bytes of hexadecimal)
1224 %n zero-padded sequence number, starting at 1
1239 %n zero-padded sequence number, starting at 1
1225 %r zero-padded changeset revision number
1240 %r zero-padded changeset revision number
1226
1241
1227 Without the -a option, export will avoid generating diffs of files
1242 Without the -a option, export will avoid generating diffs of files
1228 it detects as binary. With -a, export will generate a diff anyway,
1243 it detects as binary. With -a, export will generate a diff anyway,
1229 probably with undesirable results.
1244 probably with undesirable results.
1230
1245
1231 With the --switch-parent option, the diff will be against the second
1246 With the --switch-parent option, the diff will be against the second
1232 parent. It can be useful to review a merge.
1247 parent. It can be useful to review a merge.
1233 """
1248 """
1234 if not changesets:
1249 if not changesets:
1235 raise util.Abort(_("export requires at least one changeset"))
1250 raise util.Abort(_("export requires at least one changeset"))
1236 seqno = 0
1251 seqno = 0
1237 revs = list(revrange(ui, repo, changesets))
1252 revs = list(revrange(ui, repo, changesets))
1238 total = len(revs)
1253 total = len(revs)
1239 revwidth = max(map(len, revs))
1254 revwidth = max(map(len, revs))
1240 msg = len(revs) > 1 and _("Exporting patches:\n") or _("Exporting patch:\n")
1255 msg = len(revs) > 1 and _("Exporting patches:\n") or _("Exporting patch:\n")
1241 ui.note(msg)
1256 ui.note(msg)
1242 for cset in revs:
1257 for cset in revs:
1243 seqno += 1
1258 seqno += 1
1244 doexport(ui, repo, cset, seqno, total, revwidth, opts)
1259 doexport(ui, repo, cset, seqno, total, revwidth, opts)
1245
1260
1246 def forget(ui, repo, *pats, **opts):
1261 def forget(ui, repo, *pats, **opts):
1247 """don't add the specified files on the next commit
1262 """don't add the specified files on the next commit
1248
1263
1249 Undo an 'hg add' scheduled for the next commit.
1264 Undo an 'hg add' scheduled for the next commit.
1250 """
1265 """
1251 forget = []
1266 forget = []
1252 for src, abs, rel, exact in walk(repo, pats, opts):
1267 for src, abs, rel, exact in walk(repo, pats, opts):
1253 if repo.dirstate.state(abs) == 'a':
1268 if repo.dirstate.state(abs) == 'a':
1254 forget.append(abs)
1269 forget.append(abs)
1255 if ui.verbose or not exact:
1270 if ui.verbose or not exact:
1256 ui.status(_('forgetting %s\n') % ((pats and rel) or abs))
1271 ui.status(_('forgetting %s\n') % ((pats and rel) or abs))
1257 repo.forget(forget)
1272 repo.forget(forget)
1258
1273
1259 def grep(ui, repo, pattern, *pats, **opts):
1274 def grep(ui, repo, pattern, *pats, **opts):
1260 """search for a pattern in specified files and revisions
1275 """search for a pattern in specified files and revisions
1261
1276
1262 Search revisions of files for a regular expression.
1277 Search revisions of files for a regular expression.
1263
1278
1264 This command behaves differently than Unix grep. It only accepts
1279 This command behaves differently than Unix grep. It only accepts
1265 Python/Perl regexps. It searches repository history, not the
1280 Python/Perl regexps. It searches repository history, not the
1266 working directory. It always prints the revision number in which
1281 working directory. It always prints the revision number in which
1267 a match appears.
1282 a match appears.
1268
1283
1269 By default, grep only prints output for the first revision of a
1284 By default, grep only prints output for the first revision of a
1270 file in which it finds a match. To get it to print every revision
1285 file in which it finds a match. To get it to print every revision
1271 that contains a change in match status ("-" for a match that
1286 that contains a change in match status ("-" for a match that
1272 becomes a non-match, or "+" for a non-match that becomes a match),
1287 becomes a non-match, or "+" for a non-match that becomes a match),
1273 use the --all flag.
1288 use the --all flag.
1274 """
1289 """
1275 reflags = 0
1290 reflags = 0
1276 if opts['ignore_case']:
1291 if opts['ignore_case']:
1277 reflags |= re.I
1292 reflags |= re.I
1278 regexp = re.compile(pattern, reflags)
1293 regexp = re.compile(pattern, reflags)
1279 sep, eol = ':', '\n'
1294 sep, eol = ':', '\n'
1280 if opts['print0']:
1295 if opts['print0']:
1281 sep = eol = '\0'
1296 sep = eol = '\0'
1282
1297
1283 fcache = {}
1298 fcache = {}
1284 def getfile(fn):
1299 def getfile(fn):
1285 if fn not in fcache:
1300 if fn not in fcache:
1286 fcache[fn] = repo.file(fn)
1301 fcache[fn] = repo.file(fn)
1287 return fcache[fn]
1302 return fcache[fn]
1288
1303
1289 def matchlines(body):
1304 def matchlines(body):
1290 begin = 0
1305 begin = 0
1291 linenum = 0
1306 linenum = 0
1292 while True:
1307 while True:
1293 match = regexp.search(body, begin)
1308 match = regexp.search(body, begin)
1294 if not match:
1309 if not match:
1295 break
1310 break
1296 mstart, mend = match.span()
1311 mstart, mend = match.span()
1297 linenum += body.count('\n', begin, mstart) + 1
1312 linenum += body.count('\n', begin, mstart) + 1
1298 lstart = body.rfind('\n', begin, mstart) + 1 or begin
1313 lstart = body.rfind('\n', begin, mstart) + 1 or begin
1299 lend = body.find('\n', mend)
1314 lend = body.find('\n', mend)
1300 yield linenum, mstart - lstart, mend - lstart, body[lstart:lend]
1315 yield linenum, mstart - lstart, mend - lstart, body[lstart:lend]
1301 begin = lend + 1
1316 begin = lend + 1
1302
1317
1303 class linestate(object):
1318 class linestate(object):
1304 def __init__(self, line, linenum, colstart, colend):
1319 def __init__(self, line, linenum, colstart, colend):
1305 self.line = line
1320 self.line = line
1306 self.linenum = linenum
1321 self.linenum = linenum
1307 self.colstart = colstart
1322 self.colstart = colstart
1308 self.colend = colend
1323 self.colend = colend
1309 def __eq__(self, other):
1324 def __eq__(self, other):
1310 return self.line == other.line
1325 return self.line == other.line
1311 def __hash__(self):
1326 def __hash__(self):
1312 return hash(self.line)
1327 return hash(self.line)
1313
1328
1314 matches = {}
1329 matches = {}
1315 def grepbody(fn, rev, body):
1330 def grepbody(fn, rev, body):
1316 matches[rev].setdefault(fn, {})
1331 matches[rev].setdefault(fn, {})
1317 m = matches[rev][fn]
1332 m = matches[rev][fn]
1318 for lnum, cstart, cend, line in matchlines(body):
1333 for lnum, cstart, cend, line in matchlines(body):
1319 s = linestate(line, lnum, cstart, cend)
1334 s = linestate(line, lnum, cstart, cend)
1320 m[s] = s
1335 m[s] = s
1321
1336
1322 # FIXME: prev isn't used, why ?
1337 # FIXME: prev isn't used, why ?
1323 prev = {}
1338 prev = {}
1324 ucache = {}
1339 ucache = {}
1325 def display(fn, rev, states, prevstates):
1340 def display(fn, rev, states, prevstates):
1326 diff = list(sets.Set(states).symmetric_difference(sets.Set(prevstates)))
1341 diff = list(sets.Set(states).symmetric_difference(sets.Set(prevstates)))
1327 diff.sort(lambda x, y: cmp(x.linenum, y.linenum))
1342 diff.sort(lambda x, y: cmp(x.linenum, y.linenum))
1328 counts = {'-': 0, '+': 0}
1343 counts = {'-': 0, '+': 0}
1329 filerevmatches = {}
1344 filerevmatches = {}
1330 for l in diff:
1345 for l in diff:
1331 if incrementing or not opts['all']:
1346 if incrementing or not opts['all']:
1332 change = ((l in prevstates) and '-') or '+'
1347 change = ((l in prevstates) and '-') or '+'
1333 r = rev
1348 r = rev
1334 else:
1349 else:
1335 change = ((l in states) and '-') or '+'
1350 change = ((l in states) and '-') or '+'
1336 r = prev[fn]
1351 r = prev[fn]
1337 cols = [fn, str(rev)]
1352 cols = [fn, str(rev)]
1338 if opts['line_number']:
1353 if opts['line_number']:
1339 cols.append(str(l.linenum))
1354 cols.append(str(l.linenum))
1340 if opts['all']:
1355 if opts['all']:
1341 cols.append(change)
1356 cols.append(change)
1342 if opts['user']:
1357 if opts['user']:
1343 cols.append(trimuser(ui, getchange(rev)[1], rev,
1358 cols.append(trimuser(ui, getchange(rev)[1], rev,
1344 ucache))
1359 ucache))
1345 if opts['files_with_matches']:
1360 if opts['files_with_matches']:
1346 c = (fn, rev)
1361 c = (fn, rev)
1347 if c in filerevmatches:
1362 if c in filerevmatches:
1348 continue
1363 continue
1349 filerevmatches[c] = 1
1364 filerevmatches[c] = 1
1350 else:
1365 else:
1351 cols.append(l.line)
1366 cols.append(l.line)
1352 ui.write(sep.join(cols), eol)
1367 ui.write(sep.join(cols), eol)
1353 counts[change] += 1
1368 counts[change] += 1
1354 return counts['+'], counts['-']
1369 return counts['+'], counts['-']
1355
1370
1356 fstate = {}
1371 fstate = {}
1357 skip = {}
1372 skip = {}
1358 changeiter, getchange, matchfn = walkchangerevs(ui, repo, pats, opts)
1373 changeiter, getchange, matchfn = walkchangerevs(ui, repo, pats, opts)
1359 count = 0
1374 count = 0
1360 incrementing = False
1375 incrementing = False
1361 for st, rev, fns in changeiter:
1376 for st, rev, fns in changeiter:
1362 if st == 'window':
1377 if st == 'window':
1363 incrementing = rev
1378 incrementing = rev
1364 matches.clear()
1379 matches.clear()
1365 elif st == 'add':
1380 elif st == 'add':
1366 change = repo.changelog.read(repo.lookup(str(rev)))
1381 change = repo.changelog.read(repo.lookup(str(rev)))
1367 mf = repo.manifest.read(change[0])
1382 mf = repo.manifest.read(change[0])
1368 matches[rev] = {}
1383 matches[rev] = {}
1369 for fn in fns:
1384 for fn in fns:
1370 if fn in skip:
1385 if fn in skip:
1371 continue
1386 continue
1372 fstate.setdefault(fn, {})
1387 fstate.setdefault(fn, {})
1373 try:
1388 try:
1374 grepbody(fn, rev, getfile(fn).read(mf[fn]))
1389 grepbody(fn, rev, getfile(fn).read(mf[fn]))
1375 except KeyError:
1390 except KeyError:
1376 pass
1391 pass
1377 elif st == 'iter':
1392 elif st == 'iter':
1378 states = matches[rev].items()
1393 states = matches[rev].items()
1379 states.sort()
1394 states.sort()
1380 for fn, m in states:
1395 for fn, m in states:
1381 if fn in skip:
1396 if fn in skip:
1382 continue
1397 continue
1383 if incrementing or not opts['all'] or fstate[fn]:
1398 if incrementing or not opts['all'] or fstate[fn]:
1384 pos, neg = display(fn, rev, m, fstate[fn])
1399 pos, neg = display(fn, rev, m, fstate[fn])
1385 count += pos + neg
1400 count += pos + neg
1386 if pos and not opts['all']:
1401 if pos and not opts['all']:
1387 skip[fn] = True
1402 skip[fn] = True
1388 fstate[fn] = m
1403 fstate[fn] = m
1389 prev[fn] = rev
1404 prev[fn] = rev
1390
1405
1391 if not incrementing:
1406 if not incrementing:
1392 fstate = fstate.items()
1407 fstate = fstate.items()
1393 fstate.sort()
1408 fstate.sort()
1394 for fn, state in fstate:
1409 for fn, state in fstate:
1395 if fn in skip:
1410 if fn in skip:
1396 continue
1411 continue
1397 display(fn, rev, {}, state)
1412 display(fn, rev, {}, state)
1398 return (count == 0 and 1) or 0
1413 return (count == 0 and 1) or 0
1399
1414
1400 def heads(ui, repo, **opts):
1415 def heads(ui, repo, **opts):
1401 """show current repository heads
1416 """show current repository heads
1402
1417
1403 Show all repository head changesets.
1418 Show all repository head changesets.
1404
1419
1405 Repository "heads" are changesets that don't have children
1420 Repository "heads" are changesets that don't have children
1406 changesets. They are where development generally takes place and
1421 changesets. They are where development generally takes place and
1407 are the usual targets for update and merge operations.
1422 are the usual targets for update and merge operations.
1408 """
1423 """
1409 if opts['rev']:
1424 if opts['rev']:
1410 heads = repo.heads(repo.lookup(opts['rev']))
1425 heads = repo.heads(repo.lookup(opts['rev']))
1411 else:
1426 else:
1412 heads = repo.heads()
1427 heads = repo.heads()
1413 br = None
1428 br = None
1414 if opts['branches']:
1429 if opts['branches']:
1415 br = repo.branchlookup(heads)
1430 br = repo.branchlookup(heads)
1416 for n in heads:
1431 for n in heads:
1417 show_changeset(ui, repo, changenode=n, brinfo=br)
1432 show_changeset(ui, repo, changenode=n, brinfo=br)
1418
1433
1419 def identify(ui, repo):
1434 def identify(ui, repo):
1420 """print information about the working copy
1435 """print information about the working copy
1421
1436
1422 Print a short summary of the current state of the repo.
1437 Print a short summary of the current state of the repo.
1423
1438
1424 This summary identifies the repository state using one or two parent
1439 This summary identifies the repository state using one or two parent
1425 hash identifiers, followed by a "+" if there are uncommitted changes
1440 hash identifiers, followed by a "+" if there are uncommitted changes
1426 in the working directory, followed by a list of tags for this revision.
1441 in the working directory, followed by a list of tags for this revision.
1427 """
1442 """
1428 parents = [p for p in repo.dirstate.parents() if p != nullid]
1443 parents = [p for p in repo.dirstate.parents() if p != nullid]
1429 if not parents:
1444 if not parents:
1430 ui.write(_("unknown\n"))
1445 ui.write(_("unknown\n"))
1431 return
1446 return
1432
1447
1433 hexfunc = ui.verbose and hex or short
1448 hexfunc = ui.verbose and hex or short
1434 modified, added, removed, deleted, unknown = repo.changes()
1449 modified, added, removed, deleted, unknown = repo.changes()
1435 output = ["%s%s" %
1450 output = ["%s%s" %
1436 ('+'.join([hexfunc(parent) for parent in parents]),
1451 ('+'.join([hexfunc(parent) for parent in parents]),
1437 (modified or added or removed or deleted) and "+" or "")]
1452 (modified or added or removed or deleted) and "+" or "")]
1438
1453
1439 if not ui.quiet:
1454 if not ui.quiet:
1440 # multiple tags for a single parent separated by '/'
1455 # multiple tags for a single parent separated by '/'
1441 parenttags = ['/'.join(tags)
1456 parenttags = ['/'.join(tags)
1442 for tags in map(repo.nodetags, parents) if tags]
1457 for tags in map(repo.nodetags, parents) if tags]
1443 # tags for multiple parents separated by ' + '
1458 # tags for multiple parents separated by ' + '
1444 if parenttags:
1459 if parenttags:
1445 output.append(' + '.join(parenttags))
1460 output.append(' + '.join(parenttags))
1446
1461
1447 ui.write("%s\n" % ' '.join(output))
1462 ui.write("%s\n" % ' '.join(output))
1448
1463
1449 def import_(ui, repo, patch1, *patches, **opts):
1464 def import_(ui, repo, patch1, *patches, **opts):
1450 """import an ordered set of patches
1465 """import an ordered set of patches
1451
1466
1452 Import a list of patches and commit them individually.
1467 Import a list of patches and commit them individually.
1453
1468
1454 If there are outstanding changes in the working directory, import
1469 If there are outstanding changes in the working directory, import
1455 will abort unless given the -f flag.
1470 will abort unless given the -f flag.
1456
1471
1457 If a patch looks like a mail message (its first line starts with
1472 If a patch looks like a mail message (its first line starts with
1458 "From " or looks like an RFC822 header), it will not be applied
1473 "From " or looks like an RFC822 header), it will not be applied
1459 unless the -f option is used. The importer neither parses nor
1474 unless the -f option is used. The importer neither parses nor
1460 discards mail headers, so use -f only to override the "mailness"
1475 discards mail headers, so use -f only to override the "mailness"
1461 safety check, not to import a real mail message.
1476 safety check, not to import a real mail message.
1462 """
1477 """
1463 patches = (patch1,) + patches
1478 patches = (patch1,) + patches
1464
1479
1465 if not opts['force']:
1480 if not opts['force']:
1466 modified, added, removed, deleted, unknown = repo.changes()
1481 modified, added, removed, deleted, unknown = repo.changes()
1467 if modified or added or removed or deleted:
1482 if modified or added or removed or deleted:
1468 raise util.Abort(_("outstanding uncommitted changes"))
1483 raise util.Abort(_("outstanding uncommitted changes"))
1469
1484
1470 d = opts["base"]
1485 d = opts["base"]
1471 strip = opts["strip"]
1486 strip = opts["strip"]
1472
1487
1473 mailre = re.compile(r'(?:From |[\w-]+:)')
1488 mailre = re.compile(r'(?:From |[\w-]+:)')
1474
1489
1475 # attempt to detect the start of a patch
1490 # attempt to detect the start of a patch
1476 # (this heuristic is borrowed from quilt)
1491 # (this heuristic is borrowed from quilt)
1477 diffre = re.compile(r'(?:Index:[ \t]|diff[ \t]|RCS file: |' +
1492 diffre = re.compile(r'(?:Index:[ \t]|diff[ \t]|RCS file: |' +
1478 'retrieving revision [0-9]+(\.[0-9]+)*$|' +
1493 'retrieving revision [0-9]+(\.[0-9]+)*$|' +
1479 '(---|\*\*\*)[ \t])')
1494 '(---|\*\*\*)[ \t])')
1480
1495
1481 for patch in patches:
1496 for patch in patches:
1482 ui.status(_("applying %s\n") % patch)
1497 ui.status(_("applying %s\n") % patch)
1483 pf = os.path.join(d, patch)
1498 pf = os.path.join(d, patch)
1484
1499
1485 message = []
1500 message = []
1486 user = None
1501 user = None
1487 hgpatch = False
1502 hgpatch = False
1488 for line in file(pf):
1503 for line in file(pf):
1489 line = line.rstrip()
1504 line = line.rstrip()
1490 if (not message and not hgpatch and
1505 if (not message and not hgpatch and
1491 mailre.match(line) and not opts['force']):
1506 mailre.match(line) and not opts['force']):
1492 if len(line) > 35:
1507 if len(line) > 35:
1493 line = line[:32] + '...'
1508 line = line[:32] + '...'
1494 raise util.Abort(_('first line looks like a '
1509 raise util.Abort(_('first line looks like a '
1495 'mail header: ') + line)
1510 'mail header: ') + line)
1496 if diffre.match(line):
1511 if diffre.match(line):
1497 break
1512 break
1498 elif hgpatch:
1513 elif hgpatch:
1499 # parse values when importing the result of an hg export
1514 # parse values when importing the result of an hg export
1500 if line.startswith("# User "):
1515 if line.startswith("# User "):
1501 user = line[7:]
1516 user = line[7:]
1502 ui.debug(_('User: %s\n') % user)
1517 ui.debug(_('User: %s\n') % user)
1503 elif not line.startswith("# ") and line:
1518 elif not line.startswith("# ") and line:
1504 message.append(line)
1519 message.append(line)
1505 hgpatch = False
1520 hgpatch = False
1506 elif line == '# HG changeset patch':
1521 elif line == '# HG changeset patch':
1507 hgpatch = True
1522 hgpatch = True
1508 message = [] # We may have collected garbage
1523 message = [] # We may have collected garbage
1509 else:
1524 else:
1510 message.append(line)
1525 message.append(line)
1511
1526
1512 # make sure message isn't empty
1527 # make sure message isn't empty
1513 if not message:
1528 if not message:
1514 message = _("imported patch %s\n") % patch
1529 message = _("imported patch %s\n") % patch
1515 else:
1530 else:
1516 message = "%s\n" % '\n'.join(message)
1531 message = "%s\n" % '\n'.join(message)
1517 ui.debug(_('message:\n%s\n') % message)
1532 ui.debug(_('message:\n%s\n') % message)
1518
1533
1519 files = util.patch(strip, pf, ui)
1534 files = util.patch(strip, pf, ui)
1520
1535
1521 if len(files) > 0:
1536 if len(files) > 0:
1522 addremove(ui, repo, *files)
1537 addremove(ui, repo, *files)
1523 repo.commit(files, message, user)
1538 repo.commit(files, message, user)
1524
1539
1525 def incoming(ui, repo, source="default", **opts):
1540 def incoming(ui, repo, source="default", **opts):
1526 """show new changesets found in source
1541 """show new changesets found in source
1527
1542
1528 Show new changesets found in the specified repo or the default
1543 Show new changesets found in the specified repo or the default
1529 pull repo. These are the changesets that would be pulled if a pull
1544 pull repo. These are the changesets that would be pulled if a pull
1530 was requested.
1545 was requested.
1531
1546
1532 Currently only local repositories are supported.
1547 Currently only local repositories are supported.
1533 """
1548 """
1534 source = ui.expandpath(source, repo.root)
1549 source = ui.expandpath(source, repo.root)
1535 other = hg.repository(ui, source)
1550 other = hg.repository(ui, source)
1536 if not other.local():
1551 if not other.local():
1537 raise util.Abort(_("incoming doesn't work for remote repositories yet"))
1552 raise util.Abort(_("incoming doesn't work for remote repositories yet"))
1538 o = repo.findincoming(other)
1553 o = repo.findincoming(other)
1539 if not o:
1554 if not o:
1540 return
1555 return
1541 o = other.changelog.nodesbetween(o)[0]
1556 o = other.changelog.nodesbetween(o)[0]
1542 if opts['newest_first']:
1557 if opts['newest_first']:
1543 o.reverse()
1558 o.reverse()
1544 for n in o:
1559 for n in o:
1545 parents = [p for p in other.changelog.parents(n) if p != nullid]
1560 parents = [p for p in other.changelog.parents(n) if p != nullid]
1546 if opts['no_merges'] and len(parents) == 2:
1561 if opts['no_merges'] and len(parents) == 2:
1547 continue
1562 continue
1548 show_changeset(ui, other, changenode=n)
1563 show_changeset(ui, other, changenode=n)
1549 if opts['patch']:
1564 if opts['patch']:
1550 prev = (parents and parents[0]) or nullid
1565 prev = (parents and parents[0]) or nullid
1551 dodiff(ui, ui, other, prev, n)
1566 dodiff(ui, ui, other, prev, n)
1552 ui.write("\n")
1567 ui.write("\n")
1553
1568
1554 def init(ui, dest="."):
1569 def init(ui, dest="."):
1555 """create a new repository in the given directory
1570 """create a new repository in the given directory
1556
1571
1557 Initialize a new repository in the given directory. If the given
1572 Initialize a new repository in the given directory. If the given
1558 directory does not exist, it is created.
1573 directory does not exist, it is created.
1559
1574
1560 If no directory is given, the current directory is used.
1575 If no directory is given, the current directory is used.
1561 """
1576 """
1562 if not os.path.exists(dest):
1577 if not os.path.exists(dest):
1563 os.mkdir(dest)
1578 os.mkdir(dest)
1564 hg.repository(ui, dest, create=1)
1579 hg.repository(ui, dest, create=1)
1565
1580
1566 def locate(ui, repo, *pats, **opts):
1581 def locate(ui, repo, *pats, **opts):
1567 """locate files matching specific patterns
1582 """locate files matching specific patterns
1568
1583
1569 Print all files under Mercurial control whose names match the
1584 Print all files under Mercurial control whose names match the
1570 given patterns.
1585 given patterns.
1571
1586
1572 This command searches the current directory and its
1587 This command searches the current directory and its
1573 subdirectories. To search an entire repository, move to the root
1588 subdirectories. To search an entire repository, move to the root
1574 of the repository.
1589 of the repository.
1575
1590
1576 If no patterns are given to match, this command prints all file
1591 If no patterns are given to match, this command prints all file
1577 names.
1592 names.
1578
1593
1579 If you want to feed the output of this command into the "xargs"
1594 If you want to feed the output of this command into the "xargs"
1580 command, use the "-0" option to both this command and "xargs".
1595 command, use the "-0" option to both this command and "xargs".
1581 This will avoid the problem of "xargs" treating single filenames
1596 This will avoid the problem of "xargs" treating single filenames
1582 that contain white space as multiple filenames.
1597 that contain white space as multiple filenames.
1583 """
1598 """
1584 end = opts['print0'] and '\0' or '\n'
1599 end = opts['print0'] and '\0' or '\n'
1585 rev = opts['rev']
1600 rev = opts['rev']
1586 if rev:
1601 if rev:
1587 node = repo.lookup(rev)
1602 node = repo.lookup(rev)
1588 else:
1603 else:
1589 node = None
1604 node = None
1590
1605
1591 for src, abs, rel, exact in walk(repo, pats, opts, node=node,
1606 for src, abs, rel, exact in walk(repo, pats, opts, node=node,
1592 head='(?:.*/|)'):
1607 head='(?:.*/|)'):
1593 if not node and repo.dirstate.state(abs) == '?':
1608 if not node and repo.dirstate.state(abs) == '?':
1594 continue
1609 continue
1595 if opts['fullpath']:
1610 if opts['fullpath']:
1596 ui.write(os.path.join(repo.root, abs), end)
1611 ui.write(os.path.join(repo.root, abs), end)
1597 else:
1612 else:
1598 ui.write(((pats and rel) or abs), end)
1613 ui.write(((pats and rel) or abs), end)
1599
1614
1600 def log(ui, repo, *pats, **opts):
1615 def log(ui, repo, *pats, **opts):
1601 """show revision history of entire repository or files
1616 """show revision history of entire repository or files
1602
1617
1603 Print the revision history of the specified files or the entire project.
1618 Print the revision history of the specified files or the entire project.
1604
1619
1605 By default this command outputs: changeset id and hash, tags,
1620 By default this command outputs: changeset id and hash, tags,
1606 non-trivial parents, user, date and time, and a summary for each
1621 non-trivial parents, user, date and time, and a summary for each
1607 commit. When the -v/--verbose switch is used, the list of changed
1622 commit. When the -v/--verbose switch is used, the list of changed
1608 files and full commit message is shown.
1623 files and full commit message is shown.
1609 """
1624 """
1610 class dui(object):
1625 class dui(object):
1611 # Implement and delegate some ui protocol. Save hunks of
1626 # Implement and delegate some ui protocol. Save hunks of
1612 # output for later display in the desired order.
1627 # output for later display in the desired order.
1613 def __init__(self, ui):
1628 def __init__(self, ui):
1614 self.ui = ui
1629 self.ui = ui
1615 self.hunk = {}
1630 self.hunk = {}
1616 def bump(self, rev):
1631 def bump(self, rev):
1617 self.rev = rev
1632 self.rev = rev
1618 self.hunk[rev] = []
1633 self.hunk[rev] = []
1619 def note(self, *args):
1634 def note(self, *args):
1620 if self.verbose:
1635 if self.verbose:
1621 self.write(*args)
1636 self.write(*args)
1622 def status(self, *args):
1637 def status(self, *args):
1623 if not self.quiet:
1638 if not self.quiet:
1624 self.write(*args)
1639 self.write(*args)
1625 def write(self, *args):
1640 def write(self, *args):
1626 self.hunk[self.rev].append(args)
1641 self.hunk[self.rev].append(args)
1627 def debug(self, *args):
1642 def debug(self, *args):
1628 if self.debugflag:
1643 if self.debugflag:
1629 self.write(*args)
1644 self.write(*args)
1630 def __getattr__(self, key):
1645 def __getattr__(self, key):
1631 return getattr(self.ui, key)
1646 return getattr(self.ui, key)
1632
1647
1633 changeiter, getchange, matchfn = walkchangerevs(ui, repo, pats, opts)
1648 changeiter, getchange, matchfn = walkchangerevs(ui, repo, pats, opts)
1634
1649
1635 if opts['limit']:
1650 if opts['limit']:
1636 try:
1651 try:
1637 limit = int(opts['limit'])
1652 limit = int(opts['limit'])
1638 except ValueError:
1653 except ValueError:
1639 raise util.Abort(_('limit must be a positive integer'))
1654 raise util.Abort(_('limit must be a positive integer'))
1640 if limit <= 0: raise util.Abort(_('limit must be positive'))
1655 if limit <= 0: raise util.Abort(_('limit must be positive'))
1641 else:
1656 else:
1642 limit = sys.maxint
1657 limit = sys.maxint
1643 count = 0
1658 count = 0
1644
1659
1645 for st, rev, fns in changeiter:
1660 for st, rev, fns in changeiter:
1646 if st == 'window':
1661 if st == 'window':
1647 du = dui(ui)
1662 du = dui(ui)
1648 elif st == 'add':
1663 elif st == 'add':
1649 du.bump(rev)
1664 du.bump(rev)
1650 changenode = repo.changelog.node(rev)
1665 changenode = repo.changelog.node(rev)
1651 parents = [p for p in repo.changelog.parents(changenode)
1666 parents = [p for p in repo.changelog.parents(changenode)
1652 if p != nullid]
1667 if p != nullid]
1653 if opts['no_merges'] and len(parents) == 2:
1668 if opts['no_merges'] and len(parents) == 2:
1654 continue
1669 continue
1655 if opts['only_merges'] and len(parents) != 2:
1670 if opts['only_merges'] and len(parents) != 2:
1656 continue
1671 continue
1657
1672
1658 if opts['keyword']:
1673 if opts['keyword']:
1659 changes = getchange(rev)
1674 changes = getchange(rev)
1660 miss = 0
1675 miss = 0
1661 for k in [kw.lower() for kw in opts['keyword']]:
1676 for k in [kw.lower() for kw in opts['keyword']]:
1662 if not (k in changes[1].lower() or
1677 if not (k in changes[1].lower() or
1663 k in changes[4].lower() or
1678 k in changes[4].lower() or
1664 k in " ".join(changes[3][:20]).lower()):
1679 k in " ".join(changes[3][:20]).lower()):
1665 miss = 1
1680 miss = 1
1666 break
1681 break
1667 if miss:
1682 if miss:
1668 continue
1683 continue
1669
1684
1670 br = None
1685 br = None
1671 if opts['branches']:
1686 if opts['branches']:
1672 br = repo.branchlookup([repo.changelog.node(rev)])
1687 br = repo.branchlookup([repo.changelog.node(rev)])
1673
1688
1674 show_changeset(du, repo, rev, brinfo=br)
1689 show_changeset(du, repo, rev, brinfo=br)
1675 if opts['patch']:
1690 if opts['patch']:
1676 prev = (parents and parents[0]) or nullid
1691 prev = (parents and parents[0]) or nullid
1677 dodiff(du, du, repo, prev, changenode, match=matchfn)
1692 dodiff(du, du, repo, prev, changenode, match=matchfn)
1678 du.write("\n\n")
1693 du.write("\n\n")
1679 elif st == 'iter':
1694 elif st == 'iter':
1680 if count == limit: break
1695 if count == limit: break
1681 if du.hunk[rev]:
1696 if du.hunk[rev]:
1682 count += 1
1697 count += 1
1683 for args in du.hunk[rev]:
1698 for args in du.hunk[rev]:
1684 ui.write(*args)
1699 ui.write(*args)
1685
1700
1686 def manifest(ui, repo, rev=None):
1701 def manifest(ui, repo, rev=None):
1687 """output the latest or given revision of the project manifest
1702 """output the latest or given revision of the project manifest
1688
1703
1689 Print a list of version controlled files for the given revision.
1704 Print a list of version controlled files for the given revision.
1690
1705
1691 The manifest is the list of files being version controlled. If no revision
1706 The manifest is the list of files being version controlled. If no revision
1692 is given then the tip is used.
1707 is given then the tip is used.
1693 """
1708 """
1694 if rev:
1709 if rev:
1695 try:
1710 try:
1696 # assume all revision numbers are for changesets
1711 # assume all revision numbers are for changesets
1697 n = repo.lookup(rev)
1712 n = repo.lookup(rev)
1698 change = repo.changelog.read(n)
1713 change = repo.changelog.read(n)
1699 n = change[0]
1714 n = change[0]
1700 except hg.RepoError:
1715 except hg.RepoError:
1701 n = repo.manifest.lookup(rev)
1716 n = repo.manifest.lookup(rev)
1702 else:
1717 else:
1703 n = repo.manifest.tip()
1718 n = repo.manifest.tip()
1704 m = repo.manifest.read(n)
1719 m = repo.manifest.read(n)
1705 mf = repo.manifest.readflags(n)
1720 mf = repo.manifest.readflags(n)
1706 files = m.keys()
1721 files = m.keys()
1707 files.sort()
1722 files.sort()
1708
1723
1709 for f in files:
1724 for f in files:
1710 ui.write("%40s %3s %s\n" % (hex(m[f]), mf[f] and "755" or "644", f))
1725 ui.write("%40s %3s %s\n" % (hex(m[f]), mf[f] and "755" or "644", f))
1711
1726
1712 def outgoing(ui, repo, dest="default-push", **opts):
1727 def outgoing(ui, repo, dest="default-push", **opts):
1713 """show changesets not found in destination
1728 """show changesets not found in destination
1714
1729
1715 Show changesets not found in the specified destination repo or the
1730 Show changesets not found in the specified destination repo or the
1716 default push repo. These are the changesets that would be pushed
1731 default push repo. These are the changesets that would be pushed
1717 if a push was requested.
1732 if a push was requested.
1718
1733
1719 See pull for valid source format details.
1734 See pull for valid source format details.
1720 """
1735 """
1721 dest = ui.expandpath(dest, repo.root)
1736 dest = ui.expandpath(dest, repo.root)
1722 other = hg.repository(ui, dest)
1737 other = hg.repository(ui, dest)
1723 o = repo.findoutgoing(other)
1738 o = repo.findoutgoing(other)
1724 o = repo.changelog.nodesbetween(o)[0]
1739 o = repo.changelog.nodesbetween(o)[0]
1725 if opts['newest_first']:
1740 if opts['newest_first']:
1726 o.reverse()
1741 o.reverse()
1727 for n in o:
1742 for n in o:
1728 parents = [p for p in repo.changelog.parents(n) if p != nullid]
1743 parents = [p for p in repo.changelog.parents(n) if p != nullid]
1729 if opts['no_merges'] and len(parents) == 2:
1744 if opts['no_merges'] and len(parents) == 2:
1730 continue
1745 continue
1731 show_changeset(ui, repo, changenode=n)
1746 show_changeset(ui, repo, changenode=n)
1732 if opts['patch']:
1747 if opts['patch']:
1733 prev = (parents and parents[0]) or nullid
1748 prev = (parents and parents[0]) or nullid
1734 dodiff(ui, ui, repo, prev, n)
1749 dodiff(ui, ui, repo, prev, n)
1735 ui.write("\n")
1750 ui.write("\n")
1736
1751
1737 def parents(ui, repo, rev=None, branches=None):
1752 def parents(ui, repo, rev=None, branches=None):
1738 """show the parents of the working dir or revision
1753 """show the parents of the working dir or revision
1739
1754
1740 Print the working directory's parent revisions.
1755 Print the working directory's parent revisions.
1741 """
1756 """
1742 if rev:
1757 if rev:
1743 p = repo.changelog.parents(repo.lookup(rev))
1758 p = repo.changelog.parents(repo.lookup(rev))
1744 else:
1759 else:
1745 p = repo.dirstate.parents()
1760 p = repo.dirstate.parents()
1746
1761
1747 br = None
1762 br = None
1748 if branches is not None:
1763 if branches is not None:
1749 br = repo.branchlookup(p)
1764 br = repo.branchlookup(p)
1750 for n in p:
1765 for n in p:
1751 if n != nullid:
1766 if n != nullid:
1752 show_changeset(ui, repo, changenode=n, brinfo=br)
1767 show_changeset(ui, repo, changenode=n, brinfo=br)
1753
1768
1754 def paths(ui, search=None):
1769 def paths(ui, search=None):
1755 """show definition of symbolic path names
1770 """show definition of symbolic path names
1756
1771
1757 Show definition of symbolic path name NAME. If no name is given, show
1772 Show definition of symbolic path name NAME. If no name is given, show
1758 definition of available names.
1773 definition of available names.
1759
1774
1760 Path names are defined in the [paths] section of /etc/mercurial/hgrc
1775 Path names are defined in the [paths] section of /etc/mercurial/hgrc
1761 and $HOME/.hgrc. If run inside a repository, .hg/hgrc is used, too.
1776 and $HOME/.hgrc. If run inside a repository, .hg/hgrc is used, too.
1762 """
1777 """
1763 try:
1778 try:
1764 repo = hg.repository(ui=ui)
1779 repo = hg.repository(ui=ui)
1765 except hg.RepoError:
1780 except hg.RepoError:
1766 pass
1781 pass
1767
1782
1768 if search:
1783 if search:
1769 for name, path in ui.configitems("paths"):
1784 for name, path in ui.configitems("paths"):
1770 if name == search:
1785 if name == search:
1771 ui.write("%s\n" % path)
1786 ui.write("%s\n" % path)
1772 return
1787 return
1773 ui.warn(_("not found!\n"))
1788 ui.warn(_("not found!\n"))
1774 return 1
1789 return 1
1775 else:
1790 else:
1776 for name, path in ui.configitems("paths"):
1791 for name, path in ui.configitems("paths"):
1777 ui.write("%s = %s\n" % (name, path))
1792 ui.write("%s = %s\n" % (name, path))
1778
1793
1779 def pull(ui, repo, source="default", **opts):
1794 def pull(ui, repo, source="default", **opts):
1780 """pull changes from the specified source
1795 """pull changes from the specified source
1781
1796
1782 Pull changes from a remote repository to a local one.
1797 Pull changes from a remote repository to a local one.
1783
1798
1784 This finds all changes from the repository at the specified path
1799 This finds all changes from the repository at the specified path
1785 or URL and adds them to the local repository. By default, this
1800 or URL and adds them to the local repository. By default, this
1786 does not update the copy of the project in the working directory.
1801 does not update the copy of the project in the working directory.
1787
1802
1788 Valid URLs are of the form:
1803 Valid URLs are of the form:
1789
1804
1790 local/filesystem/path
1805 local/filesystem/path
1791 http://[user@]host[:port][/path]
1806 http://[user@]host[:port][/path]
1792 https://[user@]host[:port][/path]
1807 https://[user@]host[:port][/path]
1793 ssh://[user@]host[:port][/path]
1808 ssh://[user@]host[:port][/path]
1794
1809
1795 SSH requires an accessible shell account on the destination machine
1810 SSH requires an accessible shell account on the destination machine
1796 and a copy of hg in the remote path. With SSH, paths are relative
1811 and a copy of hg in the remote path. With SSH, paths are relative
1797 to the remote user's home directory by default; use two slashes at
1812 to the remote user's home directory by default; use two slashes at
1798 the start of a path to specify it as relative to the filesystem root.
1813 the start of a path to specify it as relative to the filesystem root.
1799 """
1814 """
1800 source = ui.expandpath(source, repo.root)
1815 source = ui.expandpath(source, repo.root)
1801 ui.status(_('pulling from %s\n') % (source))
1816 ui.status(_('pulling from %s\n') % (source))
1802
1817
1803 if opts['ssh']:
1818 if opts['ssh']:
1804 ui.setconfig("ui", "ssh", opts['ssh'])
1819 ui.setconfig("ui", "ssh", opts['ssh'])
1805 if opts['remotecmd']:
1820 if opts['remotecmd']:
1806 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
1821 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
1807
1822
1808 other = hg.repository(ui, source)
1823 other = hg.repository(ui, source)
1809 revs = None
1824 revs = None
1810 if opts['rev'] and not other.local():
1825 if opts['rev'] and not other.local():
1811 raise util.Abort(_("pull -r doesn't work for remote repositories yet"))
1826 raise util.Abort(_("pull -r doesn't work for remote repositories yet"))
1812 elif opts['rev']:
1827 elif opts['rev']:
1813 revs = [other.lookup(rev) for rev in opts['rev']]
1828 revs = [other.lookup(rev) for rev in opts['rev']]
1814 r = repo.pull(other, heads=revs)
1829 r = repo.pull(other, heads=revs)
1815 if not r:
1830 if not r:
1816 if opts['update']:
1831 if opts['update']:
1817 return update(ui, repo)
1832 return update(ui, repo)
1818 else:
1833 else:
1819 ui.status(_("(run 'hg update' to get a working copy)\n"))
1834 ui.status(_("(run 'hg update' to get a working copy)\n"))
1820
1835
1821 return r
1836 return r
1822
1837
1823 def push(ui, repo, dest="default-push", **opts):
1838 def push(ui, repo, dest="default-push", **opts):
1824 """push changes to the specified destination
1839 """push changes to the specified destination
1825
1840
1826 Push changes from the local repository to the given destination.
1841 Push changes from the local repository to the given destination.
1827
1842
1828 This is the symmetrical operation for pull. It helps to move
1843 This is the symmetrical operation for pull. It helps to move
1829 changes from the current repository to a different one. If the
1844 changes from the current repository to a different one. If the
1830 destination is local this is identical to a pull in that directory
1845 destination is local this is identical to a pull in that directory
1831 from the current one.
1846 from the current one.
1832
1847
1833 By default, push will refuse to run if it detects the result would
1848 By default, push will refuse to run if it detects the result would
1834 increase the number of remote heads. This generally indicates the
1849 increase the number of remote heads. This generally indicates the
1835 the client has forgotten to sync and merge before pushing.
1850 the client has forgotten to sync and merge before pushing.
1836
1851
1837 Valid URLs are of the form:
1852 Valid URLs are of the form:
1838
1853
1839 local/filesystem/path
1854 local/filesystem/path
1840 ssh://[user@]host[:port][/path]
1855 ssh://[user@]host[:port][/path]
1841
1856
1842 SSH requires an accessible shell account on the destination
1857 SSH requires an accessible shell account on the destination
1843 machine and a copy of hg in the remote path.
1858 machine and a copy of hg in the remote path.
1844 """
1859 """
1845 dest = ui.expandpath(dest, repo.root)
1860 dest = ui.expandpath(dest, repo.root)
1846 ui.status('pushing to %s\n' % (dest))
1861 ui.status('pushing to %s\n' % (dest))
1847
1862
1848 if opts['ssh']:
1863 if opts['ssh']:
1849 ui.setconfig("ui", "ssh", opts['ssh'])
1864 ui.setconfig("ui", "ssh", opts['ssh'])
1850 if opts['remotecmd']:
1865 if opts['remotecmd']:
1851 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
1866 ui.setconfig("ui", "remotecmd", opts['remotecmd'])
1852
1867
1853 other = hg.repository(ui, dest)
1868 other = hg.repository(ui, dest)
1854 revs = None
1869 revs = None
1855 if opts['rev']:
1870 if opts['rev']:
1856 revs = [repo.lookup(rev) for rev in opts['rev']]
1871 revs = [repo.lookup(rev) for rev in opts['rev']]
1857 r = repo.push(other, opts['force'], revs=revs)
1872 r = repo.push(other, opts['force'], revs=revs)
1858 return r
1873 return r
1859
1874
1860 def rawcommit(ui, repo, *flist, **rc):
1875 def rawcommit(ui, repo, *flist, **rc):
1861 """raw commit interface (DEPRECATED)
1876 """raw commit interface (DEPRECATED)
1862
1877
1863 (DEPRECATED)
1878 (DEPRECATED)
1864 Lowlevel commit, for use in helper scripts.
1879 Lowlevel commit, for use in helper scripts.
1865
1880
1866 This command is not intended to be used by normal users, as it is
1881 This command is not intended to be used by normal users, as it is
1867 primarily useful for importing from other SCMs.
1882 primarily useful for importing from other SCMs.
1868
1883
1869 This command is now deprecated and will be removed in a future
1884 This command is now deprecated and will be removed in a future
1870 release, please use debugsetparents and commit instead.
1885 release, please use debugsetparents and commit instead.
1871 """
1886 """
1872
1887
1873 ui.warn(_("(the rawcommit command is deprecated)\n"))
1888 ui.warn(_("(the rawcommit command is deprecated)\n"))
1874
1889
1875 message = rc['message']
1890 message = rc['message']
1876 if not message and rc['logfile']:
1891 if not message and rc['logfile']:
1877 try:
1892 try:
1878 message = open(rc['logfile']).read()
1893 message = open(rc['logfile']).read()
1879 except IOError:
1894 except IOError:
1880 pass
1895 pass
1881 if not message and not rc['logfile']:
1896 if not message and not rc['logfile']:
1882 raise util.Abort(_("missing commit message"))
1897 raise util.Abort(_("missing commit message"))
1883
1898
1884 files = relpath(repo, list(flist))
1899 files = relpath(repo, list(flist))
1885 if rc['files']:
1900 if rc['files']:
1886 files += open(rc['files']).read().splitlines()
1901 files += open(rc['files']).read().splitlines()
1887
1902
1888 rc['parent'] = map(repo.lookup, rc['parent'])
1903 rc['parent'] = map(repo.lookup, rc['parent'])
1889
1904
1890 try:
1905 try:
1891 repo.rawcommit(files, message, rc['user'], rc['date'], *rc['parent'])
1906 repo.rawcommit(files, message, rc['user'], rc['date'], *rc['parent'])
1892 except ValueError, inst:
1907 except ValueError, inst:
1893 raise util.Abort(str(inst))
1908 raise util.Abort(str(inst))
1894
1909
1895 def recover(ui, repo):
1910 def recover(ui, repo):
1896 """roll back an interrupted transaction
1911 """roll back an interrupted transaction
1897
1912
1898 Recover from an interrupted commit or pull.
1913 Recover from an interrupted commit or pull.
1899
1914
1900 This command tries to fix the repository status after an interrupted
1915 This command tries to fix the repository status after an interrupted
1901 operation. It should only be necessary when Mercurial suggests it.
1916 operation. It should only be necessary when Mercurial suggests it.
1902 """
1917 """
1903 if repo.recover():
1918 if repo.recover():
1904 return repo.verify()
1919 return repo.verify()
1905 return False
1920 return False
1906
1921
1907 def remove(ui, repo, pat, *pats, **opts):
1922 def remove(ui, repo, pat, *pats, **opts):
1908 """remove the specified files on the next commit
1923 """remove the specified files on the next commit
1909
1924
1910 Schedule the indicated files for removal from the repository.
1925 Schedule the indicated files for removal from the repository.
1911
1926
1912 This command schedules the files to be removed at the next commit.
1927 This command schedules the files to be removed at the next commit.
1913 This only removes files from the current branch, not from the
1928 This only removes files from the current branch, not from the
1914 entire project history. If the files still exist in the working
1929 entire project history. If the files still exist in the working
1915 directory, they will be deleted from it.
1930 directory, they will be deleted from it.
1916 """
1931 """
1917 names = []
1932 names = []
1918 def okaytoremove(abs, rel, exact):
1933 def okaytoremove(abs, rel, exact):
1919 modified, added, removed, deleted, unknown = repo.changes(files=[abs])
1934 modified, added, removed, deleted, unknown = repo.changes(files=[abs])
1920 reason = None
1935 reason = None
1921 if modified:
1936 if modified:
1922 reason = _('is modified')
1937 reason = _('is modified')
1923 elif added:
1938 elif added:
1924 reason = _('has been marked for add')
1939 reason = _('has been marked for add')
1925 elif unknown:
1940 elif unknown:
1926 reason = _('is not managed')
1941 reason = _('is not managed')
1927 if reason:
1942 if reason:
1928 if exact:
1943 if exact:
1929 ui.warn(_('not removing %s: file %s\n') % (rel, reason))
1944 ui.warn(_('not removing %s: file %s\n') % (rel, reason))
1930 else:
1945 else:
1931 return True
1946 return True
1932 for src, abs, rel, exact in walk(repo, (pat,) + pats, opts):
1947 for src, abs, rel, exact in walk(repo, (pat,) + pats, opts):
1933 if okaytoremove(abs, rel, exact):
1948 if okaytoremove(abs, rel, exact):
1934 if ui.verbose or not exact:
1949 if ui.verbose or not exact:
1935 ui.status(_('removing %s\n') % rel)
1950 ui.status(_('removing %s\n') % rel)
1936 names.append(abs)
1951 names.append(abs)
1937 repo.remove(names, unlink=True)
1952 repo.remove(names, unlink=True)
1938
1953
1939 def rename(ui, repo, *pats, **opts):
1954 def rename(ui, repo, *pats, **opts):
1940 """rename files; equivalent of copy + remove
1955 """rename files; equivalent of copy + remove
1941
1956
1942 Mark dest as copies of sources; mark sources for deletion. If
1957 Mark dest as copies of sources; mark sources for deletion. If
1943 dest is a directory, copies are put in that directory. If dest is
1958 dest is a directory, copies are put in that directory. If dest is
1944 a file, there can only be one source.
1959 a file, there can only be one source.
1945
1960
1946 By default, this command copies the contents of files as they
1961 By default, this command copies the contents of files as they
1947 stand in the working directory. If invoked with --after, the
1962 stand in the working directory. If invoked with --after, the
1948 operation is recorded, but no copying is performed.
1963 operation is recorded, but no copying is performed.
1949
1964
1950 This command takes effect in the next commit.
1965 This command takes effect in the next commit.
1951
1966
1952 NOTE: This command should be treated as experimental. While it
1967 NOTE: This command should be treated as experimental. While it
1953 should properly record rename files, this information is not yet
1968 should properly record rename files, this information is not yet
1954 fully used by merge, nor fully reported by log.
1969 fully used by merge, nor fully reported by log.
1955 """
1970 """
1956 errs, copied = docopy(ui, repo, pats, opts)
1971 try:
1957 names = []
1972 wlock = repo.wlock(0)
1958 for abs, rel, exact in copied:
1973 errs, copied = docopy(ui, repo, pats, opts, wlock)
1959 if ui.verbose or not exact:
1974 names = []
1960 ui.status(_('removing %s\n') % rel)
1975 for abs, rel, exact in copied:
1961 names.append(abs)
1976 if ui.verbose or not exact:
1962 repo.remove(names, unlink=True)
1977 ui.status(_('removing %s\n') % rel)
1978 names.append(abs)
1979 repo.remove(names, True, wlock)
1980 except lock.LockHeld, inst:
1981 ui.warn(_("repository lock held by %s\n") % inst.args[0])
1982 errs = 1
1963 return errs
1983 return errs
1964
1984
1965 def revert(ui, repo, *pats, **opts):
1985 def revert(ui, repo, *pats, **opts):
1966 """revert modified files or dirs back to their unmodified states
1986 """revert modified files or dirs back to their unmodified states
1967
1987
1968 In its default mode, it reverts any uncommitted modifications made
1988 In its default mode, it reverts any uncommitted modifications made
1969 to the named files or directories. This restores the contents of
1989 to the named files or directories. This restores the contents of
1970 the affected files to an unmodified state.
1990 the affected files to an unmodified state.
1971
1991
1972 Using the -r option, it reverts the given files or directories to
1992 Using the -r option, it reverts the given files or directories to
1973 their state as of an earlier revision. This can be helpful to "roll
1993 their state as of an earlier revision. This can be helpful to "roll
1974 back" some or all of a change that should not have been committed.
1994 back" some or all of a change that should not have been committed.
1975
1995
1976 Revert modifies the working directory. It does not commit any
1996 Revert modifies the working directory. It does not commit any
1977 changes, or change the parent of the current working directory.
1997 changes, or change the parent of the current working directory.
1978
1998
1979 If a file has been deleted, it is recreated. If the executable
1999 If a file has been deleted, it is recreated. If the executable
1980 mode of a file was changed, it is reset.
2000 mode of a file was changed, it is reset.
1981
2001
1982 If names are given, all files matching the names are reverted.
2002 If names are given, all files matching the names are reverted.
1983
2003
1984 If no arguments are given, all files in the repository are reverted.
2004 If no arguments are given, all files in the repository are reverted.
1985 """
2005 """
1986 node = opts['rev'] and repo.lookup(opts['rev']) or \
2006 node = opts['rev'] and repo.lookup(opts['rev']) or \
1987 repo.dirstate.parents()[0]
2007 repo.dirstate.parents()[0]
1988
2008
1989 files, choose, anypats = matchpats(repo, pats, opts)
2009 files, choose, anypats = matchpats(repo, pats, opts)
1990 modified, added, removed, deleted, unknown = repo.changes(match=choose)
2010 modified, added, removed, deleted, unknown = repo.changes(match=choose)
1991 repo.forget(added)
2011 repo.forget(added)
1992 repo.undelete(removed)
2012 repo.undelete(removed)
1993
2013
1994 return repo.update(node, False, True, choose, False)
2014 return repo.update(node, False, True, choose, False)
1995
2015
1996 def root(ui, repo):
2016 def root(ui, repo):
1997 """print the root (top) of the current working dir
2017 """print the root (top) of the current working dir
1998
2018
1999 Print the root directory of the current repository.
2019 Print the root directory of the current repository.
2000 """
2020 """
2001 ui.write(repo.root + "\n")
2021 ui.write(repo.root + "\n")
2002
2022
2003 def serve(ui, repo, **opts):
2023 def serve(ui, repo, **opts):
2004 """export the repository via HTTP
2024 """export the repository via HTTP
2005
2025
2006 Start a local HTTP repository browser and pull server.
2026 Start a local HTTP repository browser and pull server.
2007
2027
2008 By default, the server logs accesses to stdout and errors to
2028 By default, the server logs accesses to stdout and errors to
2009 stderr. Use the "-A" and "-E" options to log to files.
2029 stderr. Use the "-A" and "-E" options to log to files.
2010 """
2030 """
2011
2031
2012 if opts["stdio"]:
2032 if opts["stdio"]:
2013 fin, fout = sys.stdin, sys.stdout
2033 fin, fout = sys.stdin, sys.stdout
2014 sys.stdout = sys.stderr
2034 sys.stdout = sys.stderr
2015
2035
2016 # Prevent insertion/deletion of CRs
2036 # Prevent insertion/deletion of CRs
2017 util.set_binary(fin)
2037 util.set_binary(fin)
2018 util.set_binary(fout)
2038 util.set_binary(fout)
2019
2039
2020 def getarg():
2040 def getarg():
2021 argline = fin.readline()[:-1]
2041 argline = fin.readline()[:-1]
2022 arg, l = argline.split()
2042 arg, l = argline.split()
2023 val = fin.read(int(l))
2043 val = fin.read(int(l))
2024 return arg, val
2044 return arg, val
2025 def respond(v):
2045 def respond(v):
2026 fout.write("%d\n" % len(v))
2046 fout.write("%d\n" % len(v))
2027 fout.write(v)
2047 fout.write(v)
2028 fout.flush()
2048 fout.flush()
2029
2049
2030 lock = None
2050 lock = None
2031
2051
2032 while 1:
2052 while 1:
2033 cmd = fin.readline()[:-1]
2053 cmd = fin.readline()[:-1]
2034 if cmd == '':
2054 if cmd == '':
2035 return
2055 return
2036 if cmd == "heads":
2056 if cmd == "heads":
2037 h = repo.heads()
2057 h = repo.heads()
2038 respond(" ".join(map(hex, h)) + "\n")
2058 respond(" ".join(map(hex, h)) + "\n")
2039 if cmd == "lock":
2059 if cmd == "lock":
2040 lock = repo.lock()
2060 lock = repo.lock()
2041 respond("")
2061 respond("")
2042 if cmd == "unlock":
2062 if cmd == "unlock":
2043 if lock:
2063 if lock:
2044 lock.release()
2064 lock.release()
2045 lock = None
2065 lock = None
2046 respond("")
2066 respond("")
2047 elif cmd == "branches":
2067 elif cmd == "branches":
2048 arg, nodes = getarg()
2068 arg, nodes = getarg()
2049 nodes = map(bin, nodes.split(" "))
2069 nodes = map(bin, nodes.split(" "))
2050 r = []
2070 r = []
2051 for b in repo.branches(nodes):
2071 for b in repo.branches(nodes):
2052 r.append(" ".join(map(hex, b)) + "\n")
2072 r.append(" ".join(map(hex, b)) + "\n")
2053 respond("".join(r))
2073 respond("".join(r))
2054 elif cmd == "between":
2074 elif cmd == "between":
2055 arg, pairs = getarg()
2075 arg, pairs = getarg()
2056 pairs = [map(bin, p.split("-")) for p in pairs.split(" ")]
2076 pairs = [map(bin, p.split("-")) for p in pairs.split(" ")]
2057 r = []
2077 r = []
2058 for b in repo.between(pairs):
2078 for b in repo.between(pairs):
2059 r.append(" ".join(map(hex, b)) + "\n")
2079 r.append(" ".join(map(hex, b)) + "\n")
2060 respond("".join(r))
2080 respond("".join(r))
2061 elif cmd == "changegroup":
2081 elif cmd == "changegroup":
2062 nodes = []
2082 nodes = []
2063 arg, roots = getarg()
2083 arg, roots = getarg()
2064 nodes = map(bin, roots.split(" "))
2084 nodes = map(bin, roots.split(" "))
2065
2085
2066 cg = repo.changegroup(nodes, 'serve')
2086 cg = repo.changegroup(nodes, 'serve')
2067 while 1:
2087 while 1:
2068 d = cg.read(4096)
2088 d = cg.read(4096)
2069 if not d:
2089 if not d:
2070 break
2090 break
2071 fout.write(d)
2091 fout.write(d)
2072
2092
2073 fout.flush()
2093 fout.flush()
2074
2094
2075 elif cmd == "addchangegroup":
2095 elif cmd == "addchangegroup":
2076 if not lock:
2096 if not lock:
2077 respond("not locked")
2097 respond("not locked")
2078 continue
2098 continue
2079 respond("")
2099 respond("")
2080
2100
2081 r = repo.addchangegroup(fin)
2101 r = repo.addchangegroup(fin)
2082 respond("")
2102 respond("")
2083
2103
2084 optlist = "name templates style address port ipv6 accesslog errorlog"
2104 optlist = "name templates style address port ipv6 accesslog errorlog"
2085 for o in optlist.split():
2105 for o in optlist.split():
2086 if opts[o]:
2106 if opts[o]:
2087 ui.setconfig("web", o, opts[o])
2107 ui.setconfig("web", o, opts[o])
2088
2108
2089 if opts['daemon'] and not opts['daemon_pipefds']:
2109 if opts['daemon'] and not opts['daemon_pipefds']:
2090 rfd, wfd = os.pipe()
2110 rfd, wfd = os.pipe()
2091 args = sys.argv[:]
2111 args = sys.argv[:]
2092 args.append('--daemon-pipefds=%d,%d' % (rfd, wfd))
2112 args.append('--daemon-pipefds=%d,%d' % (rfd, wfd))
2093 pid = os.spawnvp(os.P_NOWAIT | getattr(os, 'P_DETACH', 0),
2113 pid = os.spawnvp(os.P_NOWAIT | getattr(os, 'P_DETACH', 0),
2094 args[0], args)
2114 args[0], args)
2095 os.close(wfd)
2115 os.close(wfd)
2096 os.read(rfd, 1)
2116 os.read(rfd, 1)
2097 os._exit(0)
2117 os._exit(0)
2098
2118
2099 try:
2119 try:
2100 httpd = hgweb.create_server(repo)
2120 httpd = hgweb.create_server(repo)
2101 except socket.error, inst:
2121 except socket.error, inst:
2102 raise util.Abort(_('cannot start server: ') + inst.args[1])
2122 raise util.Abort(_('cannot start server: ') + inst.args[1])
2103
2123
2104 if ui.verbose:
2124 if ui.verbose:
2105 addr, port = httpd.socket.getsockname()
2125 addr, port = httpd.socket.getsockname()
2106 if addr == '0.0.0.0':
2126 if addr == '0.0.0.0':
2107 addr = socket.gethostname()
2127 addr = socket.gethostname()
2108 else:
2128 else:
2109 try:
2129 try:
2110 addr = socket.gethostbyaddr(addr)[0]
2130 addr = socket.gethostbyaddr(addr)[0]
2111 except socket.error:
2131 except socket.error:
2112 pass
2132 pass
2113 if port != 80:
2133 if port != 80:
2114 ui.status(_('listening at http://%s:%d/\n') % (addr, port))
2134 ui.status(_('listening at http://%s:%d/\n') % (addr, port))
2115 else:
2135 else:
2116 ui.status(_('listening at http://%s/\n') % addr)
2136 ui.status(_('listening at http://%s/\n') % addr)
2117
2137
2118 if opts['pid_file']:
2138 if opts['pid_file']:
2119 fp = open(opts['pid_file'], 'w')
2139 fp = open(opts['pid_file'], 'w')
2120 fp.write(str(os.getpid()))
2140 fp.write(str(os.getpid()))
2121 fp.close()
2141 fp.close()
2122
2142
2123 if opts['daemon_pipefds']:
2143 if opts['daemon_pipefds']:
2124 rfd, wfd = [int(x) for x in opts['daemon_pipefds'].split(',')]
2144 rfd, wfd = [int(x) for x in opts['daemon_pipefds'].split(',')]
2125 os.close(rfd)
2145 os.close(rfd)
2126 os.write(wfd, 'y')
2146 os.write(wfd, 'y')
2127 os.close(wfd)
2147 os.close(wfd)
2128 sys.stdout.flush()
2148 sys.stdout.flush()
2129 sys.stderr.flush()
2149 sys.stderr.flush()
2130 fd = os.open(util.nulldev, os.O_RDWR)
2150 fd = os.open(util.nulldev, os.O_RDWR)
2131 if fd != 0: os.dup2(fd, 0)
2151 if fd != 0: os.dup2(fd, 0)
2132 if fd != 1: os.dup2(fd, 1)
2152 if fd != 1: os.dup2(fd, 1)
2133 if fd != 2: os.dup2(fd, 2)
2153 if fd != 2: os.dup2(fd, 2)
2134 if fd not in (0, 1, 2): os.close(fd)
2154 if fd not in (0, 1, 2): os.close(fd)
2135
2155
2136 httpd.serve_forever()
2156 httpd.serve_forever()
2137
2157
2138 def status(ui, repo, *pats, **opts):
2158 def status(ui, repo, *pats, **opts):
2139 """show changed files in the working directory
2159 """show changed files in the working directory
2140
2160
2141 Show changed files in the repository. If names are
2161 Show changed files in the repository. If names are
2142 given, only files that match are shown.
2162 given, only files that match are shown.
2143
2163
2144 The codes used to show the status of files are:
2164 The codes used to show the status of files are:
2145 M = modified
2165 M = modified
2146 A = added
2166 A = added
2147 R = removed
2167 R = removed
2148 ! = deleted, but still tracked
2168 ! = deleted, but still tracked
2149 ? = not tracked
2169 ? = not tracked
2150 """
2170 """
2151
2171
2152 files, matchfn, anypats = matchpats(repo, pats, opts)
2172 files, matchfn, anypats = matchpats(repo, pats, opts)
2153 cwd = (pats and repo.getcwd()) or ''
2173 cwd = (pats and repo.getcwd()) or ''
2154 modified, added, removed, deleted, unknown = [
2174 modified, added, removed, deleted, unknown = [
2155 [util.pathto(cwd, x) for x in n]
2175 [util.pathto(cwd, x) for x in n]
2156 for n in repo.changes(files=files, match=matchfn)]
2176 for n in repo.changes(files=files, match=matchfn)]
2157
2177
2158 changetypes = [(_('modified'), 'M', modified),
2178 changetypes = [(_('modified'), 'M', modified),
2159 (_('added'), 'A', added),
2179 (_('added'), 'A', added),
2160 (_('removed'), 'R', removed),
2180 (_('removed'), 'R', removed),
2161 (_('deleted'), '!', deleted),
2181 (_('deleted'), '!', deleted),
2162 (_('unknown'), '?', unknown)]
2182 (_('unknown'), '?', unknown)]
2163
2183
2164 end = opts['print0'] and '\0' or '\n'
2184 end = opts['print0'] and '\0' or '\n'
2165
2185
2166 for opt, char, changes in ([ct for ct in changetypes if opts[ct[0]]]
2186 for opt, char, changes in ([ct for ct in changetypes if opts[ct[0]]]
2167 or changetypes):
2187 or changetypes):
2168 if opts['no_status']:
2188 if opts['no_status']:
2169 format = "%%s%s" % end
2189 format = "%%s%s" % end
2170 else:
2190 else:
2171 format = "%s %%s%s" % (char, end);
2191 format = "%s %%s%s" % (char, end);
2172
2192
2173 for f in changes:
2193 for f in changes:
2174 ui.write(format % f)
2194 ui.write(format % f)
2175
2195
2176 def tag(ui, repo, name, rev_=None, **opts):
2196 def tag(ui, repo, name, rev_=None, **opts):
2177 """add a tag for the current tip or a given revision
2197 """add a tag for the current tip or a given revision
2178
2198
2179 Name a particular revision using <name>.
2199 Name a particular revision using <name>.
2180
2200
2181 Tags are used to name particular revisions of the repository and are
2201 Tags are used to name particular revisions of the repository and are
2182 very useful to compare different revision, to go back to significant
2202 very useful to compare different revision, to go back to significant
2183 earlier versions or to mark branch points as releases, etc.
2203 earlier versions or to mark branch points as releases, etc.
2184
2204
2185 If no revision is given, the tip is used.
2205 If no revision is given, the tip is used.
2186
2206
2187 To facilitate version control, distribution, and merging of tags,
2207 To facilitate version control, distribution, and merging of tags,
2188 they are stored as a file named ".hgtags" which is managed
2208 they are stored as a file named ".hgtags" which is managed
2189 similarly to other project files and can be hand-edited if
2209 similarly to other project files and can be hand-edited if
2190 necessary. The file '.hg/localtags' is used for local tags (not
2210 necessary. The file '.hg/localtags' is used for local tags (not
2191 shared among repositories).
2211 shared among repositories).
2192 """
2212 """
2193 if name == "tip":
2213 if name == "tip":
2194 raise util.Abort(_("the name 'tip' is reserved"))
2214 raise util.Abort(_("the name 'tip' is reserved"))
2195 if rev_ is not None:
2215 if rev_ is not None:
2196 ui.warn(_("use of 'hg tag NAME [REV]' is deprecated, "
2216 ui.warn(_("use of 'hg tag NAME [REV]' is deprecated, "
2197 "please use 'hg tag [-r REV] NAME' instead\n"))
2217 "please use 'hg tag [-r REV] NAME' instead\n"))
2198 if opts['rev']:
2218 if opts['rev']:
2199 raise util.Abort(_("use only one form to specify the revision"))
2219 raise util.Abort(_("use only one form to specify the revision"))
2200 if opts['rev']:
2220 if opts['rev']:
2201 rev_ = opts['rev']
2221 rev_ = opts['rev']
2202 if rev_:
2222 if rev_:
2203 r = hex(repo.lookup(rev_))
2223 r = hex(repo.lookup(rev_))
2204 else:
2224 else:
2205 r = hex(repo.changelog.tip())
2225 r = hex(repo.changelog.tip())
2206
2226
2207 disallowed = (revrangesep, '\r', '\n')
2227 disallowed = (revrangesep, '\r', '\n')
2208 for c in disallowed:
2228 for c in disallowed:
2209 if name.find(c) >= 0:
2229 if name.find(c) >= 0:
2210 raise util.Abort(_("%s cannot be used in a tag name") % repr(c))
2230 raise util.Abort(_("%s cannot be used in a tag name") % repr(c))
2211
2231
2212 repo.hook('pretag', throw=True, node=r, tag=name,
2232 repo.hook('pretag', throw=True, node=r, tag=name,
2213 local=int(not not opts['local']))
2233 local=int(not not opts['local']))
2214
2234
2215 if opts['local']:
2235 if opts['local']:
2216 repo.opener("localtags", "a").write("%s %s\n" % (r, name))
2236 repo.opener("localtags", "a").write("%s %s\n" % (r, name))
2217 repo.hook('tag', node=r, tag=name, local=1)
2237 repo.hook('tag', node=r, tag=name, local=1)
2218 return
2238 return
2219
2239
2220 for x in repo.changes():
2240 for x in repo.changes():
2221 if ".hgtags" in x:
2241 if ".hgtags" in x:
2222 raise util.Abort(_("working copy of .hgtags is changed "
2242 raise util.Abort(_("working copy of .hgtags is changed "
2223 "(please commit .hgtags manually)"))
2243 "(please commit .hgtags manually)"))
2224
2244
2225 repo.wfile(".hgtags", "ab").write("%s %s\n" % (r, name))
2245 repo.wfile(".hgtags", "ab").write("%s %s\n" % (r, name))
2226 if repo.dirstate.state(".hgtags") == '?':
2246 if repo.dirstate.state(".hgtags") == '?':
2227 repo.add([".hgtags"])
2247 repo.add([".hgtags"])
2228
2248
2229 message = (opts['message'] or
2249 message = (opts['message'] or
2230 _("Added tag %s for changeset %s") % (name, r))
2250 _("Added tag %s for changeset %s") % (name, r))
2231 try:
2251 try:
2232 repo.commit([".hgtags"], message, opts['user'], opts['date'])
2252 repo.commit([".hgtags"], message, opts['user'], opts['date'])
2233 repo.hook('tag', node=r, tag=name, local=0)
2253 repo.hook('tag', node=r, tag=name, local=0)
2234 except ValueError, inst:
2254 except ValueError, inst:
2235 raise util.Abort(str(inst))
2255 raise util.Abort(str(inst))
2236
2256
2237 def tags(ui, repo):
2257 def tags(ui, repo):
2238 """list repository tags
2258 """list repository tags
2239
2259
2240 List the repository tags.
2260 List the repository tags.
2241
2261
2242 This lists both regular and local tags.
2262 This lists both regular and local tags.
2243 """
2263 """
2244
2264
2245 l = repo.tagslist()
2265 l = repo.tagslist()
2246 l.reverse()
2266 l.reverse()
2247 for t, n in l:
2267 for t, n in l:
2248 try:
2268 try:
2249 r = "%5d:%s" % (repo.changelog.rev(n), hex(n))
2269 r = "%5d:%s" % (repo.changelog.rev(n), hex(n))
2250 except KeyError:
2270 except KeyError:
2251 r = " ?:?"
2271 r = " ?:?"
2252 ui.write("%-30s %s\n" % (t, r))
2272 ui.write("%-30s %s\n" % (t, r))
2253
2273
2254 def tip(ui, repo, **opts):
2274 def tip(ui, repo, **opts):
2255 """show the tip revision
2275 """show the tip revision
2256
2276
2257 Show the tip revision.
2277 Show the tip revision.
2258 """
2278 """
2259 n = repo.changelog.tip()
2279 n = repo.changelog.tip()
2260 br = None
2280 br = None
2261 if opts['branches']:
2281 if opts['branches']:
2262 br = repo.branchlookup([n])
2282 br = repo.branchlookup([n])
2263 show_changeset(ui, repo, changenode=n, brinfo=br)
2283 show_changeset(ui, repo, changenode=n, brinfo=br)
2264 if opts['patch']:
2284 if opts['patch']:
2265 dodiff(ui, ui, repo, repo.changelog.parents(n)[0], n)
2285 dodiff(ui, ui, repo, repo.changelog.parents(n)[0], n)
2266
2286
2267 def unbundle(ui, repo, fname, **opts):
2287 def unbundle(ui, repo, fname, **opts):
2268 """apply a changegroup file
2288 """apply a changegroup file
2269
2289
2270 Apply a compressed changegroup file generated by the bundle
2290 Apply a compressed changegroup file generated by the bundle
2271 command.
2291 command.
2272 """
2292 """
2273 f = urllib.urlopen(fname)
2293 f = urllib.urlopen(fname)
2274
2294
2275 if f.read(4) != "HG10":
2295 if f.read(4) != "HG10":
2276 raise util.Abort(_("%s: not a Mercurial bundle file") % fname)
2296 raise util.Abort(_("%s: not a Mercurial bundle file") % fname)
2277
2297
2278 def bzgenerator(f):
2298 def bzgenerator(f):
2279 zd = bz2.BZ2Decompressor()
2299 zd = bz2.BZ2Decompressor()
2280 for chunk in f:
2300 for chunk in f:
2281 yield zd.decompress(chunk)
2301 yield zd.decompress(chunk)
2282
2302
2283 bzgen = bzgenerator(util.filechunkiter(f, 4096))
2303 bzgen = bzgenerator(util.filechunkiter(f, 4096))
2284 if repo.addchangegroup(util.chunkbuffer(bzgen)):
2304 if repo.addchangegroup(util.chunkbuffer(bzgen)):
2285 return 1
2305 return 1
2286
2306
2287 if opts['update']:
2307 if opts['update']:
2288 return update(ui, repo)
2308 return update(ui, repo)
2289 else:
2309 else:
2290 ui.status(_("(run 'hg update' to get a working copy)\n"))
2310 ui.status(_("(run 'hg update' to get a working copy)\n"))
2291
2311
2292 def undo(ui, repo):
2312 def undo(ui, repo):
2293 """undo the last commit or pull
2313 """undo the last commit or pull
2294
2314
2295 Roll back the last pull or commit transaction on the
2315 Roll back the last pull or commit transaction on the
2296 repository, restoring the project to its earlier state.
2316 repository, restoring the project to its earlier state.
2297
2317
2298 This command should be used with care. There is only one level of
2318 This command should be used with care. There is only one level of
2299 undo and there is no redo.
2319 undo and there is no redo.
2300
2320
2301 This command is not intended for use on public repositories. Once
2321 This command is not intended for use on public repositories. Once
2302 a change is visible for pull by other users, undoing it locally is
2322 a change is visible for pull by other users, undoing it locally is
2303 ineffective.
2323 ineffective.
2304 """
2324 """
2305 repo.undo()
2325 repo.undo()
2306
2326
2307 def update(ui, repo, node=None, merge=False, clean=False, force=None,
2327 def update(ui, repo, node=None, merge=False, clean=False, force=None,
2308 branch=None):
2328 branch=None):
2309 """update or merge working directory
2329 """update or merge working directory
2310
2330
2311 Update the working directory to the specified revision.
2331 Update the working directory to the specified revision.
2312
2332
2313 If there are no outstanding changes in the working directory and
2333 If there are no outstanding changes in the working directory and
2314 there is a linear relationship between the current version and the
2334 there is a linear relationship between the current version and the
2315 requested version, the result is the requested version.
2335 requested version, the result is the requested version.
2316
2336
2317 Otherwise the result is a merge between the contents of the
2337 Otherwise the result is a merge between the contents of the
2318 current working directory and the requested version. Files that
2338 current working directory and the requested version. Files that
2319 changed between either parent are marked as changed for the next
2339 changed between either parent are marked as changed for the next
2320 commit and a commit must be performed before any further updates
2340 commit and a commit must be performed before any further updates
2321 are allowed.
2341 are allowed.
2322
2342
2323 By default, update will refuse to run if doing so would require
2343 By default, update will refuse to run if doing so would require
2324 merging or discarding local changes.
2344 merging or discarding local changes.
2325 """
2345 """
2326 if branch:
2346 if branch:
2327 br = repo.branchlookup(branch=branch)
2347 br = repo.branchlookup(branch=branch)
2328 found = []
2348 found = []
2329 for x in br:
2349 for x in br:
2330 if branch in br[x]:
2350 if branch in br[x]:
2331 found.append(x)
2351 found.append(x)
2332 if len(found) > 1:
2352 if len(found) > 1:
2333 ui.warn(_("Found multiple heads for %s\n") % branch)
2353 ui.warn(_("Found multiple heads for %s\n") % branch)
2334 for x in found:
2354 for x in found:
2335 show_changeset(ui, repo, changenode=x, brinfo=br)
2355 show_changeset(ui, repo, changenode=x, brinfo=br)
2336 return 1
2356 return 1
2337 if len(found) == 1:
2357 if len(found) == 1:
2338 node = found[0]
2358 node = found[0]
2339 ui.warn(_("Using head %s for branch %s\n") % (short(node), branch))
2359 ui.warn(_("Using head %s for branch %s\n") % (short(node), branch))
2340 else:
2360 else:
2341 ui.warn(_("branch %s not found\n") % (branch))
2361 ui.warn(_("branch %s not found\n") % (branch))
2342 return 1
2362 return 1
2343 else:
2363 else:
2344 node = node and repo.lookup(node) or repo.changelog.tip()
2364 node = node and repo.lookup(node) or repo.changelog.tip()
2345 return repo.update(node, allow=merge, force=clean, forcemerge=force)
2365 return repo.update(node, allow=merge, force=clean, forcemerge=force)
2346
2366
2347 def verify(ui, repo):
2367 def verify(ui, repo):
2348 """verify the integrity of the repository
2368 """verify the integrity of the repository
2349
2369
2350 Verify the integrity of the current repository.
2370 Verify the integrity of the current repository.
2351
2371
2352 This will perform an extensive check of the repository's
2372 This will perform an extensive check of the repository's
2353 integrity, validating the hashes and checksums of each entry in
2373 integrity, validating the hashes and checksums of each entry in
2354 the changelog, manifest, and tracked files, as well as the
2374 the changelog, manifest, and tracked files, as well as the
2355 integrity of their crosslinks and indices.
2375 integrity of their crosslinks and indices.
2356 """
2376 """
2357 return repo.verify()
2377 return repo.verify()
2358
2378
2359 # Command options and aliases are listed here, alphabetically
2379 # Command options and aliases are listed here, alphabetically
2360
2380
2361 table = {
2381 table = {
2362 "^add":
2382 "^add":
2363 (add,
2383 (add,
2364 [('I', 'include', [], _('include names matching the given patterns')),
2384 [('I', 'include', [], _('include names matching the given patterns')),
2365 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2385 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2366 _('hg add [OPTION]... [FILE]...')),
2386 _('hg add [OPTION]... [FILE]...')),
2367 "addremove":
2387 "addremove":
2368 (addremove,
2388 (addremove,
2369 [('I', 'include', [], _('include names matching the given patterns')),
2389 [('I', 'include', [], _('include names matching the given patterns')),
2370 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2390 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2371 _('hg addremove [OPTION]... [FILE]...')),
2391 _('hg addremove [OPTION]... [FILE]...')),
2372 "^annotate":
2392 "^annotate":
2373 (annotate,
2393 (annotate,
2374 [('r', 'rev', '', _('annotate the specified revision')),
2394 [('r', 'rev', '', _('annotate the specified revision')),
2375 ('a', 'text', None, _('treat all files as text')),
2395 ('a', 'text', None, _('treat all files as text')),
2376 ('u', 'user', None, _('list the author')),
2396 ('u', 'user', None, _('list the author')),
2377 ('d', 'date', None, _('list the date')),
2397 ('d', 'date', None, _('list the date')),
2378 ('n', 'number', None, _('list the revision number (default)')),
2398 ('n', 'number', None, _('list the revision number (default)')),
2379 ('c', 'changeset', None, _('list the changeset')),
2399 ('c', 'changeset', None, _('list the changeset')),
2380 ('I', 'include', [], _('include names matching the given patterns')),
2400 ('I', 'include', [], _('include names matching the given patterns')),
2381 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2401 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2382 _('hg annotate [-r REV] [-a] [-u] [-n] [-c] [-d] [FILES...]')),
2402 _('hg annotate [-r REV] [-a] [-u] [-n] [-c] [-d] [FILES...]')),
2383 "bundle":
2403 "bundle":
2384 (bundle,
2404 (bundle,
2385 [],
2405 [],
2386 _('hg bundle FILE DEST')),
2406 _('hg bundle FILE DEST')),
2387 "cat":
2407 "cat":
2388 (cat,
2408 (cat,
2389 [('I', 'include', [], _('include names matching the given patterns')),
2409 [('I', 'include', [], _('include names matching the given patterns')),
2390 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2410 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2391 ('o', 'output', '', _('print output to file with formatted name')),
2411 ('o', 'output', '', _('print output to file with formatted name')),
2392 ('r', 'rev', '', _('print the given revision'))],
2412 ('r', 'rev', '', _('print the given revision'))],
2393 _('hg cat [OPTION]... FILE...')),
2413 _('hg cat [OPTION]... FILE...')),
2394 "^clone":
2414 "^clone":
2395 (clone,
2415 (clone,
2396 [('U', 'noupdate', None, _('do not update the new working directory')),
2416 [('U', 'noupdate', None, _('do not update the new working directory')),
2397 ('e', 'ssh', '', _('specify ssh command to use')),
2417 ('e', 'ssh', '', _('specify ssh command to use')),
2398 ('', 'pull', None, _('use pull protocol to copy metadata')),
2418 ('', 'pull', None, _('use pull protocol to copy metadata')),
2399 ('r', 'rev', [],
2419 ('r', 'rev', [],
2400 _('a changeset you would like to have after cloning')),
2420 _('a changeset you would like to have after cloning')),
2401 ('', 'remotecmd', '',
2421 ('', 'remotecmd', '',
2402 _('specify hg command to run on the remote side'))],
2422 _('specify hg command to run on the remote side'))],
2403 _('hg clone [OPTION]... SOURCE [DEST]')),
2423 _('hg clone [OPTION]... SOURCE [DEST]')),
2404 "^commit|ci":
2424 "^commit|ci":
2405 (commit,
2425 (commit,
2406 [('A', 'addremove', None, _('run addremove during commit')),
2426 [('A', 'addremove', None, _('run addremove during commit')),
2407 ('I', 'include', [], _('include names matching the given patterns')),
2427 ('I', 'include', [], _('include names matching the given patterns')),
2408 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2428 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2409 ('m', 'message', '', _('use <text> as commit message')),
2429 ('m', 'message', '', _('use <text> as commit message')),
2410 ('l', 'logfile', '', _('read the commit message from <file>')),
2430 ('l', 'logfile', '', _('read the commit message from <file>')),
2411 ('d', 'date', '', _('record datecode as commit date')),
2431 ('d', 'date', '', _('record datecode as commit date')),
2412 ('u', 'user', '', _('record user as commiter'))],
2432 ('u', 'user', '', _('record user as commiter'))],
2413 _('hg commit [OPTION]... [FILE]...')),
2433 _('hg commit [OPTION]... [FILE]...')),
2414 "copy|cp":
2434 "copy|cp":
2415 (copy,
2435 (copy,
2416 [('I', 'include', [], _('include names matching the given patterns')),
2436 [('I', 'include', [], _('include names matching the given patterns')),
2417 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2437 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2418 ('A', 'after', None, _('record a copy that has already occurred')),
2438 ('A', 'after', None, _('record a copy that has already occurred')),
2419 ('f', 'force', None,
2439 ('f', 'force', None,
2420 _('forcibly copy over an existing managed file'))],
2440 _('forcibly copy over an existing managed file'))],
2421 _('hg copy [OPTION]... [SOURCE]... DEST')),
2441 _('hg copy [OPTION]... [SOURCE]... DEST')),
2422 "debugancestor": (debugancestor, [], _('debugancestor INDEX REV1 REV2')),
2442 "debugancestor": (debugancestor, [], _('debugancestor INDEX REV1 REV2')),
2423 "debugrebuildstate":
2443 "debugrebuildstate":
2424 (debugrebuildstate,
2444 (debugrebuildstate,
2425 [('r', 'rev', "", _("revision to rebuild to"))],
2445 [('r', 'rev', "", _("revision to rebuild to"))],
2426 _('debugrebuildstate [-r REV] [REV]')),
2446 _('debugrebuildstate [-r REV] [REV]')),
2427 "debugcheckstate": (debugcheckstate, [], _('debugcheckstate')),
2447 "debugcheckstate": (debugcheckstate, [], _('debugcheckstate')),
2428 "debugconfig": (debugconfig, [], _('debugconfig')),
2448 "debugconfig": (debugconfig, [], _('debugconfig')),
2429 "debugsetparents": (debugsetparents, [], _('debugsetparents REV1 [REV2]')),
2449 "debugsetparents": (debugsetparents, [], _('debugsetparents REV1 [REV2]')),
2430 "debugstate": (debugstate, [], _('debugstate')),
2450 "debugstate": (debugstate, [], _('debugstate')),
2431 "debugdata": (debugdata, [], _('debugdata FILE REV')),
2451 "debugdata": (debugdata, [], _('debugdata FILE REV')),
2432 "debugindex": (debugindex, [], _('debugindex FILE')),
2452 "debugindex": (debugindex, [], _('debugindex FILE')),
2433 "debugindexdot": (debugindexdot, [], _('debugindexdot FILE')),
2453 "debugindexdot": (debugindexdot, [], _('debugindexdot FILE')),
2434 "debugrename": (debugrename, [], _('debugrename FILE [REV]')),
2454 "debugrename": (debugrename, [], _('debugrename FILE [REV]')),
2435 "debugwalk":
2455 "debugwalk":
2436 (debugwalk,
2456 (debugwalk,
2437 [('I', 'include', [], _('include names matching the given patterns')),
2457 [('I', 'include', [], _('include names matching the given patterns')),
2438 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2458 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2439 _('debugwalk [OPTION]... [FILE]...')),
2459 _('debugwalk [OPTION]... [FILE]...')),
2440 "^diff":
2460 "^diff":
2441 (diff,
2461 (diff,
2442 [('r', 'rev', [], _('revision')),
2462 [('r', 'rev', [], _('revision')),
2443 ('a', 'text', None, _('treat all files as text')),
2463 ('a', 'text', None, _('treat all files as text')),
2444 ('I', 'include', [], _('include names matching the given patterns')),
2464 ('I', 'include', [], _('include names matching the given patterns')),
2445 ('p', 'show-function', None,
2465 ('p', 'show-function', None,
2446 _('show which function each change is in')),
2466 _('show which function each change is in')),
2447 ('w', 'ignore-all-space', None,
2467 ('w', 'ignore-all-space', None,
2448 _('ignore white space when comparing lines')),
2468 _('ignore white space when comparing lines')),
2449 ('X', 'exclude', [],
2469 ('X', 'exclude', [],
2450 _('exclude names matching the given patterns'))],
2470 _('exclude names matching the given patterns'))],
2451 _('hg diff [-a] [-I] [-X] [-r REV1 [-r REV2]] [FILE]...')),
2471 _('hg diff [-a] [-I] [-X] [-r REV1 [-r REV2]] [FILE]...')),
2452 "^export":
2472 "^export":
2453 (export,
2473 (export,
2454 [('o', 'output', '', _('print output to file with formatted name')),
2474 [('o', 'output', '', _('print output to file with formatted name')),
2455 ('a', 'text', None, _('treat all files as text')),
2475 ('a', 'text', None, _('treat all files as text')),
2456 ('', 'switch-parent', None, _('diff against the second parent'))],
2476 ('', 'switch-parent', None, _('diff against the second parent'))],
2457 _('hg export [-a] [-o OUTFILESPEC] REV...')),
2477 _('hg export [-a] [-o OUTFILESPEC] REV...')),
2458 "forget":
2478 "forget":
2459 (forget,
2479 (forget,
2460 [('I', 'include', [], _('include names matching the given patterns')),
2480 [('I', 'include', [], _('include names matching the given patterns')),
2461 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2481 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2462 _('hg forget [OPTION]... FILE...')),
2482 _('hg forget [OPTION]... FILE...')),
2463 "grep":
2483 "grep":
2464 (grep,
2484 (grep,
2465 [('0', 'print0', None, _('end fields with NUL')),
2485 [('0', 'print0', None, _('end fields with NUL')),
2466 ('I', 'include', [], _('include names matching the given patterns')),
2486 ('I', 'include', [], _('include names matching the given patterns')),
2467 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2487 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2468 ('', 'all', None, _('print all revisions that match')),
2488 ('', 'all', None, _('print all revisions that match')),
2469 ('i', 'ignore-case', None, _('ignore case when matching')),
2489 ('i', 'ignore-case', None, _('ignore case when matching')),
2470 ('l', 'files-with-matches', None,
2490 ('l', 'files-with-matches', None,
2471 _('print only filenames and revs that match')),
2491 _('print only filenames and revs that match')),
2472 ('n', 'line-number', None, _('print matching line numbers')),
2492 ('n', 'line-number', None, _('print matching line numbers')),
2473 ('r', 'rev', [], _('search in given revision range')),
2493 ('r', 'rev', [], _('search in given revision range')),
2474 ('u', 'user', None, _('print user who committed change'))],
2494 ('u', 'user', None, _('print user who committed change'))],
2475 _('hg grep [OPTION]... PATTERN [FILE]...')),
2495 _('hg grep [OPTION]... PATTERN [FILE]...')),
2476 "heads":
2496 "heads":
2477 (heads,
2497 (heads,
2478 [('b', 'branches', None, _('show branches')),
2498 [('b', 'branches', None, _('show branches')),
2479 ('r', 'rev', '', _('show only heads which are descendants of rev'))],
2499 ('r', 'rev', '', _('show only heads which are descendants of rev'))],
2480 _('hg heads [-b] [-r <rev>]')),
2500 _('hg heads [-b] [-r <rev>]')),
2481 "help": (help_, [], _('hg help [COMMAND]')),
2501 "help": (help_, [], _('hg help [COMMAND]')),
2482 "identify|id": (identify, [], _('hg identify')),
2502 "identify|id": (identify, [], _('hg identify')),
2483 "import|patch":
2503 "import|patch":
2484 (import_,
2504 (import_,
2485 [('p', 'strip', 1,
2505 [('p', 'strip', 1,
2486 _('directory strip option for patch. This has the same\n') +
2506 _('directory strip option for patch. This has the same\n') +
2487 _('meaning as the corresponding patch option')),
2507 _('meaning as the corresponding patch option')),
2488 ('f', 'force', None,
2508 ('f', 'force', None,
2489 _('skip check for outstanding uncommitted changes')),
2509 _('skip check for outstanding uncommitted changes')),
2490 ('b', 'base', '', _('base path'))],
2510 ('b', 'base', '', _('base path'))],
2491 _('hg import [-f] [-p NUM] [-b BASE] PATCH...')),
2511 _('hg import [-f] [-p NUM] [-b BASE] PATCH...')),
2492 "incoming|in": (incoming,
2512 "incoming|in": (incoming,
2493 [('M', 'no-merges', None, _('do not show merges')),
2513 [('M', 'no-merges', None, _('do not show merges')),
2494 ('p', 'patch', None, _('show patch')),
2514 ('p', 'patch', None, _('show patch')),
2495 ('n', 'newest-first', None, _('show newest record first'))],
2515 ('n', 'newest-first', None, _('show newest record first'))],
2496 _('hg incoming [-p] [-n] [-M] [SOURCE]')),
2516 _('hg incoming [-p] [-n] [-M] [SOURCE]')),
2497 "^init": (init, [], _('hg init [DEST]')),
2517 "^init": (init, [], _('hg init [DEST]')),
2498 "locate":
2518 "locate":
2499 (locate,
2519 (locate,
2500 [('r', 'rev', '', _('search the repository as it stood at rev')),
2520 [('r', 'rev', '', _('search the repository as it stood at rev')),
2501 ('0', 'print0', None,
2521 ('0', 'print0', None,
2502 _('end filenames with NUL, for use with xargs')),
2522 _('end filenames with NUL, for use with xargs')),
2503 ('f', 'fullpath', None,
2523 ('f', 'fullpath', None,
2504 _('print complete paths from the filesystem root')),
2524 _('print complete paths from the filesystem root')),
2505 ('I', 'include', [], _('include names matching the given patterns')),
2525 ('I', 'include', [], _('include names matching the given patterns')),
2506 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2526 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2507 _('hg locate [OPTION]... [PATTERN]...')),
2527 _('hg locate [OPTION]... [PATTERN]...')),
2508 "^log|history":
2528 "^log|history":
2509 (log,
2529 (log,
2510 [('I', 'include', [], _('include names matching the given patterns')),
2530 [('I', 'include', [], _('include names matching the given patterns')),
2511 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2531 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2512 ('b', 'branches', None, _('show branches')),
2532 ('b', 'branches', None, _('show branches')),
2513 ('k', 'keyword', [], _('search for a keyword')),
2533 ('k', 'keyword', [], _('search for a keyword')),
2514 ('l', 'limit', '', _('limit number of changes displayed')),
2534 ('l', 'limit', '', _('limit number of changes displayed')),
2515 ('r', 'rev', [], _('show the specified revision or range')),
2535 ('r', 'rev', [], _('show the specified revision or range')),
2516 ('M', 'no-merges', None, _('do not show merges')),
2536 ('M', 'no-merges', None, _('do not show merges')),
2517 ('m', 'only-merges', None, _('show only merges')),
2537 ('m', 'only-merges', None, _('show only merges')),
2518 ('p', 'patch', None, _('show patch'))],
2538 ('p', 'patch', None, _('show patch'))],
2519 _('hg log [-I] [-X] [-r REV]... [-p] [FILE]')),
2539 _('hg log [-I] [-X] [-r REV]... [-p] [FILE]')),
2520 "manifest": (manifest, [], _('hg manifest [REV]')),
2540 "manifest": (manifest, [], _('hg manifest [REV]')),
2521 "outgoing|out": (outgoing,
2541 "outgoing|out": (outgoing,
2522 [('M', 'no-merges', None, _('do not show merges')),
2542 [('M', 'no-merges', None, _('do not show merges')),
2523 ('p', 'patch', None, _('show patch')),
2543 ('p', 'patch', None, _('show patch')),
2524 ('n', 'newest-first', None, _('show newest record first'))],
2544 ('n', 'newest-first', None, _('show newest record first'))],
2525 _('hg outgoing [-p] [-n] [-M] [DEST]')),
2545 _('hg outgoing [-p] [-n] [-M] [DEST]')),
2526 "^parents":
2546 "^parents":
2527 (parents,
2547 (parents,
2528 [('b', 'branches', None, _('show branches'))],
2548 [('b', 'branches', None, _('show branches'))],
2529 _('hg parents [-b] [REV]')),
2549 _('hg parents [-b] [REV]')),
2530 "paths": (paths, [], _('hg paths [NAME]')),
2550 "paths": (paths, [], _('hg paths [NAME]')),
2531 "^pull":
2551 "^pull":
2532 (pull,
2552 (pull,
2533 [('u', 'update', None,
2553 [('u', 'update', None,
2534 _('update the working directory to tip after pull')),
2554 _('update the working directory to tip after pull')),
2535 ('e', 'ssh', '', _('specify ssh command to use')),
2555 ('e', 'ssh', '', _('specify ssh command to use')),
2536 ('r', 'rev', [], _('a specific revision you would like to pull')),
2556 ('r', 'rev', [], _('a specific revision you would like to pull')),
2537 ('', 'remotecmd', '',
2557 ('', 'remotecmd', '',
2538 _('specify hg command to run on the remote side'))],
2558 _('specify hg command to run on the remote side'))],
2539 _('hg pull [-u] [-e FILE] [-r rev]... [--remotecmd FILE] [SOURCE]')),
2559 _('hg pull [-u] [-e FILE] [-r rev]... [--remotecmd FILE] [SOURCE]')),
2540 "^push":
2560 "^push":
2541 (push,
2561 (push,
2542 [('f', 'force', None, _('force push')),
2562 [('f', 'force', None, _('force push')),
2543 ('e', 'ssh', '', _('specify ssh command to use')),
2563 ('e', 'ssh', '', _('specify ssh command to use')),
2544 ('r', 'rev', [], _('a specific revision you would like to push')),
2564 ('r', 'rev', [], _('a specific revision you would like to push')),
2545 ('', 'remotecmd', '',
2565 ('', 'remotecmd', '',
2546 _('specify hg command to run on the remote side'))],
2566 _('specify hg command to run on the remote side'))],
2547 _('hg push [-f] [-e FILE] [-r rev]... [--remotecmd FILE] [DEST]')),
2567 _('hg push [-f] [-e FILE] [-r rev]... [--remotecmd FILE] [DEST]')),
2548 "rawcommit":
2568 "rawcommit":
2549 (rawcommit,
2569 (rawcommit,
2550 [('p', 'parent', [], _('parent')),
2570 [('p', 'parent', [], _('parent')),
2551 ('d', 'date', '', _('date code')),
2571 ('d', 'date', '', _('date code')),
2552 ('u', 'user', '', _('user')),
2572 ('u', 'user', '', _('user')),
2553 ('F', 'files', '', _('file list')),
2573 ('F', 'files', '', _('file list')),
2554 ('m', 'message', '', _('commit message')),
2574 ('m', 'message', '', _('commit message')),
2555 ('l', 'logfile', '', _('commit message file'))],
2575 ('l', 'logfile', '', _('commit message file'))],
2556 _('hg rawcommit [OPTION]... [FILE]...')),
2576 _('hg rawcommit [OPTION]... [FILE]...')),
2557 "recover": (recover, [], _('hg recover')),
2577 "recover": (recover, [], _('hg recover')),
2558 "^remove|rm":
2578 "^remove|rm":
2559 (remove,
2579 (remove,
2560 [('I', 'include', [], _('include names matching the given patterns')),
2580 [('I', 'include', [], _('include names matching the given patterns')),
2561 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2581 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2562 _('hg remove [OPTION]... FILE...')),
2582 _('hg remove [OPTION]... FILE...')),
2563 "rename|mv":
2583 "rename|mv":
2564 (rename,
2584 (rename,
2565 [('I', 'include', [], _('include names matching the given patterns')),
2585 [('I', 'include', [], _('include names matching the given patterns')),
2566 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2586 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2567 ('A', 'after', None, _('record a rename that has already occurred')),
2587 ('A', 'after', None, _('record a rename that has already occurred')),
2568 ('f', 'force', None,
2588 ('f', 'force', None,
2569 _('forcibly copy over an existing managed file'))],
2589 _('forcibly copy over an existing managed file'))],
2570 _('hg rename [OPTION]... [SOURCE]... DEST')),
2590 _('hg rename [OPTION]... [SOURCE]... DEST')),
2571 "^revert":
2591 "^revert":
2572 (revert,
2592 (revert,
2573 [('I', 'include', [], _('include names matching the given patterns')),
2593 [('I', 'include', [], _('include names matching the given patterns')),
2574 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2594 ('X', 'exclude', [], _('exclude names matching the given patterns')),
2575 ('r', 'rev', '', _('revision to revert to'))],
2595 ('r', 'rev', '', _('revision to revert to'))],
2576 _('hg revert [-n] [-r REV] [NAME]...')),
2596 _('hg revert [-n] [-r REV] [NAME]...')),
2577 "root": (root, [], _('hg root')),
2597 "root": (root, [], _('hg root')),
2578 "^serve":
2598 "^serve":
2579 (serve,
2599 (serve,
2580 [('A', 'accesslog', '', _('name of access log file to write to')),
2600 [('A', 'accesslog', '', _('name of access log file to write to')),
2581 ('d', 'daemon', None, _('run server in background')),
2601 ('d', 'daemon', None, _('run server in background')),
2582 ('', 'daemon-pipefds', '', _('used internally by daemon mode')),
2602 ('', 'daemon-pipefds', '', _('used internally by daemon mode')),
2583 ('E', 'errorlog', '', _('name of error log file to write to')),
2603 ('E', 'errorlog', '', _('name of error log file to write to')),
2584 ('p', 'port', 0, _('port to use (default: 8000)')),
2604 ('p', 'port', 0, _('port to use (default: 8000)')),
2585 ('a', 'address', '', _('address to use')),
2605 ('a', 'address', '', _('address to use')),
2586 ('n', 'name', '',
2606 ('n', 'name', '',
2587 _('name to show in web pages (default: working dir)')),
2607 _('name to show in web pages (default: working dir)')),
2588 ('', 'pid-file', '', _('name of file to write process ID to')),
2608 ('', 'pid-file', '', _('name of file to write process ID to')),
2589 ('', 'stdio', None, _('for remote clients')),
2609 ('', 'stdio', None, _('for remote clients')),
2590 ('t', 'templates', '', _('web templates to use')),
2610 ('t', 'templates', '', _('web templates to use')),
2591 ('', 'style', '', _('template style to use')),
2611 ('', 'style', '', _('template style to use')),
2592 ('6', 'ipv6', None, _('use IPv6 in addition to IPv4'))],
2612 ('6', 'ipv6', None, _('use IPv6 in addition to IPv4'))],
2593 _('hg serve [OPTION]...')),
2613 _('hg serve [OPTION]...')),
2594 "^status|st":
2614 "^status|st":
2595 (status,
2615 (status,
2596 [('m', 'modified', None, _('show only modified files')),
2616 [('m', 'modified', None, _('show only modified files')),
2597 ('a', 'added', None, _('show only added files')),
2617 ('a', 'added', None, _('show only added files')),
2598 ('r', 'removed', None, _('show only removed files')),
2618 ('r', 'removed', None, _('show only removed files')),
2599 ('d', 'deleted', None, _('show only deleted (but tracked) files')),
2619 ('d', 'deleted', None, _('show only deleted (but tracked) files')),
2600 ('u', 'unknown', None, _('show only unknown (not tracked) files')),
2620 ('u', 'unknown', None, _('show only unknown (not tracked) files')),
2601 ('n', 'no-status', None, _('hide status prefix')),
2621 ('n', 'no-status', None, _('hide status prefix')),
2602 ('0', 'print0', None,
2622 ('0', 'print0', None,
2603 _('end filenames with NUL, for use with xargs')),
2623 _('end filenames with NUL, for use with xargs')),
2604 ('I', 'include', [], _('include names matching the given patterns')),
2624 ('I', 'include', [], _('include names matching the given patterns')),
2605 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2625 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2606 _('hg status [OPTION]... [FILE]...')),
2626 _('hg status [OPTION]... [FILE]...')),
2607 "tag":
2627 "tag":
2608 (tag,
2628 (tag,
2609 [('l', 'local', None, _('make the tag local')),
2629 [('l', 'local', None, _('make the tag local')),
2610 ('m', 'message', '', _('message for tag commit log entry')),
2630 ('m', 'message', '', _('message for tag commit log entry')),
2611 ('d', 'date', '', _('record datecode as commit date')),
2631 ('d', 'date', '', _('record datecode as commit date')),
2612 ('u', 'user', '', _('record user as commiter')),
2632 ('u', 'user', '', _('record user as commiter')),
2613 ('r', 'rev', '', _('revision to tag'))],
2633 ('r', 'rev', '', _('revision to tag'))],
2614 _('hg tag [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME')),
2634 _('hg tag [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME')),
2615 "tags": (tags, [], _('hg tags')),
2635 "tags": (tags, [], _('hg tags')),
2616 "tip":
2636 "tip":
2617 (tip,
2637 (tip,
2618 [('b', 'branches', None, _('show branches')),
2638 [('b', 'branches', None, _('show branches')),
2619 ('p', 'patch', None, _('show patch'))],
2639 ('p', 'patch', None, _('show patch'))],
2620 _('hg tip [-b] [-p]')),
2640 _('hg tip [-b] [-p]')),
2621 "unbundle":
2641 "unbundle":
2622 (unbundle,
2642 (unbundle,
2623 [('u', 'update', None,
2643 [('u', 'update', None,
2624 _('update the working directory to tip after unbundle'))],
2644 _('update the working directory to tip after unbundle'))],
2625 _('hg unbundle [-u] FILE')),
2645 _('hg unbundle [-u] FILE')),
2626 "undo": (undo, [], _('hg undo')),
2646 "undo": (undo, [], _('hg undo')),
2627 "^update|up|checkout|co":
2647 "^update|up|checkout|co":
2628 (update,
2648 (update,
2629 [('b', 'branch', '', _('checkout the head of a specific branch')),
2649 [('b', 'branch', '', _('checkout the head of a specific branch')),
2630 ('m', 'merge', None, _('allow merging of branches')),
2650 ('m', 'merge', None, _('allow merging of branches')),
2631 ('C', 'clean', None, _('overwrite locally modified files')),
2651 ('C', 'clean', None, _('overwrite locally modified files')),
2632 ('f', 'force', None, _('force a merge with outstanding changes'))],
2652 ('f', 'force', None, _('force a merge with outstanding changes'))],
2633 _('hg update [-b TAG] [-m] [-C] [-f] [REV]')),
2653 _('hg update [-b TAG] [-m] [-C] [-f] [REV]')),
2634 "verify": (verify, [], _('hg verify')),
2654 "verify": (verify, [], _('hg verify')),
2635 "version": (show_version, [], _('hg version')),
2655 "version": (show_version, [], _('hg version')),
2636 }
2656 }
2637
2657
2638 globalopts = [
2658 globalopts = [
2639 ('R', 'repository', '', _('repository root directory')),
2659 ('R', 'repository', '', _('repository root directory')),
2640 ('', 'cwd', '', _('change working directory')),
2660 ('', 'cwd', '', _('change working directory')),
2641 ('y', 'noninteractive', None,
2661 ('y', 'noninteractive', None,
2642 _('do not prompt, assume \'yes\' for any required answers')),
2662 _('do not prompt, assume \'yes\' for any required answers')),
2643 ('q', 'quiet', None, _('suppress output')),
2663 ('q', 'quiet', None, _('suppress output')),
2644 ('v', 'verbose', None, _('enable additional output')),
2664 ('v', 'verbose', None, _('enable additional output')),
2645 ('', 'debug', None, _('enable debugging output')),
2665 ('', 'debug', None, _('enable debugging output')),
2646 ('', 'debugger', None, _('start debugger')),
2666 ('', 'debugger', None, _('start debugger')),
2647 ('', 'traceback', None, _('print traceback on exception')),
2667 ('', 'traceback', None, _('print traceback on exception')),
2648 ('', 'time', None, _('time how long the command takes')),
2668 ('', 'time', None, _('time how long the command takes')),
2649 ('', 'profile', None, _('print command execution profile')),
2669 ('', 'profile', None, _('print command execution profile')),
2650 ('', 'version', None, _('output version information and exit')),
2670 ('', 'version', None, _('output version information and exit')),
2651 ('h', 'help', None, _('display help and exit')),
2671 ('h', 'help', None, _('display help and exit')),
2652 ]
2672 ]
2653
2673
2654 norepo = ("clone init version help debugancestor debugconfig debugdata"
2674 norepo = ("clone init version help debugancestor debugconfig debugdata"
2655 " debugindex debugindexdot paths")
2675 " debugindex debugindexdot paths")
2656
2676
2657 def find(cmd):
2677 def find(cmd):
2658 """Return (aliases, command table entry) for command string."""
2678 """Return (aliases, command table entry) for command string."""
2659 choice = None
2679 choice = None
2660 count = 0
2680 count = 0
2661 for e in table.keys():
2681 for e in table.keys():
2662 aliases = e.lstrip("^").split("|")
2682 aliases = e.lstrip("^").split("|")
2663 if cmd in aliases:
2683 if cmd in aliases:
2664 return aliases, table[e]
2684 return aliases, table[e]
2665 for a in aliases:
2685 for a in aliases:
2666 if a.startswith(cmd):
2686 if a.startswith(cmd):
2667 count += 1
2687 count += 1
2668 choice = aliases, table[e]
2688 choice = aliases, table[e]
2669 break
2689 break
2670
2690
2671 if count > 1:
2691 if count > 1:
2672 raise AmbiguousCommand(cmd)
2692 raise AmbiguousCommand(cmd)
2673
2693
2674 if choice:
2694 if choice:
2675 return choice
2695 return choice
2676
2696
2677 raise UnknownCommand(cmd)
2697 raise UnknownCommand(cmd)
2678
2698
2679 class SignalInterrupt(Exception):
2699 class SignalInterrupt(Exception):
2680 """Exception raised on SIGTERM and SIGHUP."""
2700 """Exception raised on SIGTERM and SIGHUP."""
2681
2701
2682 def catchterm(*args):
2702 def catchterm(*args):
2683 raise SignalInterrupt
2703 raise SignalInterrupt
2684
2704
2685 def run():
2705 def run():
2686 sys.exit(dispatch(sys.argv[1:]))
2706 sys.exit(dispatch(sys.argv[1:]))
2687
2707
2688 class ParseError(Exception):
2708 class ParseError(Exception):
2689 """Exception raised on errors in parsing the command line."""
2709 """Exception raised on errors in parsing the command line."""
2690
2710
2691 def parse(ui, args):
2711 def parse(ui, args):
2692 options = {}
2712 options = {}
2693 cmdoptions = {}
2713 cmdoptions = {}
2694
2714
2695 try:
2715 try:
2696 args = fancyopts.fancyopts(args, globalopts, options)
2716 args = fancyopts.fancyopts(args, globalopts, options)
2697 except fancyopts.getopt.GetoptError, inst:
2717 except fancyopts.getopt.GetoptError, inst:
2698 raise ParseError(None, inst)
2718 raise ParseError(None, inst)
2699
2719
2700 if args:
2720 if args:
2701 cmd, args = args[0], args[1:]
2721 cmd, args = args[0], args[1:]
2702 aliases, i = find(cmd)
2722 aliases, i = find(cmd)
2703 cmd = aliases[0]
2723 cmd = aliases[0]
2704 defaults = ui.config("defaults", cmd)
2724 defaults = ui.config("defaults", cmd)
2705 if defaults:
2725 if defaults:
2706 args = defaults.split() + args
2726 args = defaults.split() + args
2707 c = list(i[1])
2727 c = list(i[1])
2708 else:
2728 else:
2709 cmd = None
2729 cmd = None
2710 c = []
2730 c = []
2711
2731
2712 # combine global options into local
2732 # combine global options into local
2713 for o in globalopts:
2733 for o in globalopts:
2714 c.append((o[0], o[1], options[o[1]], o[3]))
2734 c.append((o[0], o[1], options[o[1]], o[3]))
2715
2735
2716 try:
2736 try:
2717 args = fancyopts.fancyopts(args, c, cmdoptions)
2737 args = fancyopts.fancyopts(args, c, cmdoptions)
2718 except fancyopts.getopt.GetoptError, inst:
2738 except fancyopts.getopt.GetoptError, inst:
2719 raise ParseError(cmd, inst)
2739 raise ParseError(cmd, inst)
2720
2740
2721 # separate global options back out
2741 # separate global options back out
2722 for o in globalopts:
2742 for o in globalopts:
2723 n = o[1]
2743 n = o[1]
2724 options[n] = cmdoptions[n]
2744 options[n] = cmdoptions[n]
2725 del cmdoptions[n]
2745 del cmdoptions[n]
2726
2746
2727 return (cmd, cmd and i[0] or None, args, options, cmdoptions)
2747 return (cmd, cmd and i[0] or None, args, options, cmdoptions)
2728
2748
2729 def dispatch(args):
2749 def dispatch(args):
2730 signal.signal(signal.SIGTERM, catchterm)
2750 signal.signal(signal.SIGTERM, catchterm)
2731 try:
2751 try:
2732 signal.signal(signal.SIGHUP, catchterm)
2752 signal.signal(signal.SIGHUP, catchterm)
2733 except AttributeError:
2753 except AttributeError:
2734 pass
2754 pass
2735
2755
2736 try:
2756 try:
2737 u = ui.ui()
2757 u = ui.ui()
2738 except util.Abort, inst:
2758 except util.Abort, inst:
2739 sys.stderr.write(_("abort: %s\n") % inst)
2759 sys.stderr.write(_("abort: %s\n") % inst)
2740 sys.exit(1)
2760 sys.exit(1)
2741
2761
2742 external = []
2762 external = []
2743 for x in u.extensions():
2763 for x in u.extensions():
2744 def on_exception(exc, inst):
2764 def on_exception(exc, inst):
2745 u.warn(_("*** failed to import extension %s\n") % x[1])
2765 u.warn(_("*** failed to import extension %s\n") % x[1])
2746 u.warn("%s\n" % inst)
2766 u.warn("%s\n" % inst)
2747 if "--traceback" in sys.argv[1:]:
2767 if "--traceback" in sys.argv[1:]:
2748 traceback.print_exc()
2768 traceback.print_exc()
2749 if x[1]:
2769 if x[1]:
2750 try:
2770 try:
2751 mod = imp.load_source(x[0], x[1])
2771 mod = imp.load_source(x[0], x[1])
2752 except Exception, inst:
2772 except Exception, inst:
2753 on_exception(Exception, inst)
2773 on_exception(Exception, inst)
2754 continue
2774 continue
2755 else:
2775 else:
2756 def importh(name):
2776 def importh(name):
2757 mod = __import__(name)
2777 mod = __import__(name)
2758 components = name.split('.')
2778 components = name.split('.')
2759 for comp in components[1:]:
2779 for comp in components[1:]:
2760 mod = getattr(mod, comp)
2780 mod = getattr(mod, comp)
2761 return mod
2781 return mod
2762 try:
2782 try:
2763 mod = importh(x[0])
2783 mod = importh(x[0])
2764 except Exception, inst:
2784 except Exception, inst:
2765 on_exception(Exception, inst)
2785 on_exception(Exception, inst)
2766 continue
2786 continue
2767
2787
2768 external.append(mod)
2788 external.append(mod)
2769 for x in external:
2789 for x in external:
2770 cmdtable = getattr(x, 'cmdtable', {})
2790 cmdtable = getattr(x, 'cmdtable', {})
2771 for t in cmdtable:
2791 for t in cmdtable:
2772 if t in table:
2792 if t in table:
2773 u.warn(_("module %s overrides %s\n") % (x.__name__, t))
2793 u.warn(_("module %s overrides %s\n") % (x.__name__, t))
2774 table.update(cmdtable)
2794 table.update(cmdtable)
2775
2795
2776 try:
2796 try:
2777 cmd, func, args, options, cmdoptions = parse(u, args)
2797 cmd, func, args, options, cmdoptions = parse(u, args)
2778 except ParseError, inst:
2798 except ParseError, inst:
2779 if inst.args[0]:
2799 if inst.args[0]:
2780 u.warn(_("hg %s: %s\n") % (inst.args[0], inst.args[1]))
2800 u.warn(_("hg %s: %s\n") % (inst.args[0], inst.args[1]))
2781 help_(u, inst.args[0])
2801 help_(u, inst.args[0])
2782 else:
2802 else:
2783 u.warn(_("hg: %s\n") % inst.args[1])
2803 u.warn(_("hg: %s\n") % inst.args[1])
2784 help_(u, 'shortlist')
2804 help_(u, 'shortlist')
2785 sys.exit(-1)
2805 sys.exit(-1)
2786 except AmbiguousCommand, inst:
2806 except AmbiguousCommand, inst:
2787 u.warn(_("hg: command '%s' is ambiguous.\n") % inst.args[0])
2807 u.warn(_("hg: command '%s' is ambiguous.\n") % inst.args[0])
2788 sys.exit(1)
2808 sys.exit(1)
2789 except UnknownCommand, inst:
2809 except UnknownCommand, inst:
2790 u.warn(_("hg: unknown command '%s'\n") % inst.args[0])
2810 u.warn(_("hg: unknown command '%s'\n") % inst.args[0])
2791 help_(u, 'shortlist')
2811 help_(u, 'shortlist')
2792 sys.exit(1)
2812 sys.exit(1)
2793
2813
2794 if options["time"]:
2814 if options["time"]:
2795 def get_times():
2815 def get_times():
2796 t = os.times()
2816 t = os.times()
2797 if t[4] == 0.0: # Windows leaves this as zero, so use time.clock()
2817 if t[4] == 0.0: # Windows leaves this as zero, so use time.clock()
2798 t = (t[0], t[1], t[2], t[3], time.clock())
2818 t = (t[0], t[1], t[2], t[3], time.clock())
2799 return t
2819 return t
2800 s = get_times()
2820 s = get_times()
2801 def print_time():
2821 def print_time():
2802 t = get_times()
2822 t = get_times()
2803 u.warn(_("Time: real %.3f secs (user %.3f+%.3f sys %.3f+%.3f)\n") %
2823 u.warn(_("Time: real %.3f secs (user %.3f+%.3f sys %.3f+%.3f)\n") %
2804 (t[4]-s[4], t[0]-s[0], t[2]-s[2], t[1]-s[1], t[3]-s[3]))
2824 (t[4]-s[4], t[0]-s[0], t[2]-s[2], t[1]-s[1], t[3]-s[3]))
2805 atexit.register(print_time)
2825 atexit.register(print_time)
2806
2826
2807 u.updateopts(options["verbose"], options["debug"], options["quiet"],
2827 u.updateopts(options["verbose"], options["debug"], options["quiet"],
2808 not options["noninteractive"])
2828 not options["noninteractive"])
2809
2829
2810 # enter the debugger before command execution
2830 # enter the debugger before command execution
2811 if options['debugger']:
2831 if options['debugger']:
2812 pdb.set_trace()
2832 pdb.set_trace()
2813
2833
2814 try:
2834 try:
2815 try:
2835 try:
2816 if options['help']:
2836 if options['help']:
2817 help_(u, cmd, options['version'])
2837 help_(u, cmd, options['version'])
2818 sys.exit(0)
2838 sys.exit(0)
2819 elif options['version']:
2839 elif options['version']:
2820 show_version(u)
2840 show_version(u)
2821 sys.exit(0)
2841 sys.exit(0)
2822 elif not cmd:
2842 elif not cmd:
2823 help_(u, 'shortlist')
2843 help_(u, 'shortlist')
2824 sys.exit(0)
2844 sys.exit(0)
2825
2845
2826 if options['cwd']:
2846 if options['cwd']:
2827 try:
2847 try:
2828 os.chdir(options['cwd'])
2848 os.chdir(options['cwd'])
2829 except OSError, inst:
2849 except OSError, inst:
2830 raise util.Abort('%s: %s' %
2850 raise util.Abort('%s: %s' %
2831 (options['cwd'], inst.strerror))
2851 (options['cwd'], inst.strerror))
2832
2852
2833 if cmd not in norepo.split():
2853 if cmd not in norepo.split():
2834 path = options["repository"] or ""
2854 path = options["repository"] or ""
2835 repo = hg.repository(ui=u, path=path)
2855 repo = hg.repository(ui=u, path=path)
2836 for x in external:
2856 for x in external:
2837 if hasattr(x, 'reposetup'):
2857 if hasattr(x, 'reposetup'):
2838 x.reposetup(u, repo)
2858 x.reposetup(u, repo)
2839 d = lambda: func(u, repo, *args, **cmdoptions)
2859 d = lambda: func(u, repo, *args, **cmdoptions)
2840 else:
2860 else:
2841 d = lambda: func(u, *args, **cmdoptions)
2861 d = lambda: func(u, *args, **cmdoptions)
2842
2862
2843 if options['profile']:
2863 if options['profile']:
2844 import hotshot, hotshot.stats
2864 import hotshot, hotshot.stats
2845 prof = hotshot.Profile("hg.prof")
2865 prof = hotshot.Profile("hg.prof")
2846 r = prof.runcall(d)
2866 r = prof.runcall(d)
2847 prof.close()
2867 prof.close()
2848 stats = hotshot.stats.load("hg.prof")
2868 stats = hotshot.stats.load("hg.prof")
2849 stats.strip_dirs()
2869 stats.strip_dirs()
2850 stats.sort_stats('time', 'calls')
2870 stats.sort_stats('time', 'calls')
2851 stats.print_stats(40)
2871 stats.print_stats(40)
2852 return r
2872 return r
2853 else:
2873 else:
2854 return d()
2874 return d()
2855 except:
2875 except:
2856 # enter the debugger when we hit an exception
2876 # enter the debugger when we hit an exception
2857 if options['debugger']:
2877 if options['debugger']:
2858 pdb.post_mortem(sys.exc_info()[2])
2878 pdb.post_mortem(sys.exc_info()[2])
2859 if options['traceback']:
2879 if options['traceback']:
2860 traceback.print_exc()
2880 traceback.print_exc()
2861 raise
2881 raise
2862 except hg.RepoError, inst:
2882 except hg.RepoError, inst:
2863 u.warn(_("abort: "), inst, "!\n")
2883 u.warn(_("abort: "), inst, "!\n")
2864 except revlog.RevlogError, inst:
2884 except revlog.RevlogError, inst:
2865 u.warn(_("abort: "), inst, "!\n")
2885 u.warn(_("abort: "), inst, "!\n")
2866 except SignalInterrupt:
2886 except SignalInterrupt:
2867 u.warn(_("killed!\n"))
2887 u.warn(_("killed!\n"))
2868 except KeyboardInterrupt:
2888 except KeyboardInterrupt:
2869 try:
2889 try:
2870 u.warn(_("interrupted!\n"))
2890 u.warn(_("interrupted!\n"))
2871 except IOError, inst:
2891 except IOError, inst:
2872 if inst.errno == errno.EPIPE:
2892 if inst.errno == errno.EPIPE:
2873 if u.debugflag:
2893 if u.debugflag:
2874 u.warn(_("\nbroken pipe\n"))
2894 u.warn(_("\nbroken pipe\n"))
2875 else:
2895 else:
2876 raise
2896 raise
2877 except IOError, inst:
2897 except IOError, inst:
2878 if hasattr(inst, "code"):
2898 if hasattr(inst, "code"):
2879 u.warn(_("abort: %s\n") % inst)
2899 u.warn(_("abort: %s\n") % inst)
2880 elif hasattr(inst, "reason"):
2900 elif hasattr(inst, "reason"):
2881 u.warn(_("abort: error: %s\n") % inst.reason[1])
2901 u.warn(_("abort: error: %s\n") % inst.reason[1])
2882 elif hasattr(inst, "args") and inst[0] == errno.EPIPE:
2902 elif hasattr(inst, "args") and inst[0] == errno.EPIPE:
2883 if u.debugflag:
2903 if u.debugflag:
2884 u.warn(_("broken pipe\n"))
2904 u.warn(_("broken pipe\n"))
2885 elif getattr(inst, "strerror", None):
2905 elif getattr(inst, "strerror", None):
2886 if getattr(inst, "filename", None):
2906 if getattr(inst, "filename", None):
2887 u.warn(_("abort: %s - %s\n") % (inst.strerror, inst.filename))
2907 u.warn(_("abort: %s - %s\n") % (inst.strerror, inst.filename))
2888 else:
2908 else:
2889 u.warn(_("abort: %s\n") % inst.strerror)
2909 u.warn(_("abort: %s\n") % inst.strerror)
2890 else:
2910 else:
2891 raise
2911 raise
2892 except OSError, inst:
2912 except OSError, inst:
2893 if hasattr(inst, "filename"):
2913 if hasattr(inst, "filename"):
2894 u.warn(_("abort: %s: %s\n") % (inst.strerror, inst.filename))
2914 u.warn(_("abort: %s: %s\n") % (inst.strerror, inst.filename))
2895 else:
2915 else:
2896 u.warn(_("abort: %s\n") % inst.strerror)
2916 u.warn(_("abort: %s\n") % inst.strerror)
2897 except util.Abort, inst:
2917 except util.Abort, inst:
2898 u.warn(_('abort: '), inst.args[0] % inst.args[1:], '\n')
2918 u.warn(_('abort: '), inst.args[0] % inst.args[1:], '\n')
2899 sys.exit(1)
2919 sys.exit(1)
2900 except TypeError, inst:
2920 except TypeError, inst:
2901 # was this an argument error?
2921 # was this an argument error?
2902 tb = traceback.extract_tb(sys.exc_info()[2])
2922 tb = traceback.extract_tb(sys.exc_info()[2])
2903 if len(tb) > 2: # no
2923 if len(tb) > 2: # no
2904 raise
2924 raise
2905 u.debug(inst, "\n")
2925 u.debug(inst, "\n")
2906 u.warn(_("%s: invalid arguments\n") % cmd)
2926 u.warn(_("%s: invalid arguments\n") % cmd)
2907 help_(u, cmd)
2927 help_(u, cmd)
2908 except AmbiguousCommand, inst:
2928 except AmbiguousCommand, inst:
2909 u.warn(_("hg: command '%s' is ambiguous.\n") % inst.args[0])
2929 u.warn(_("hg: command '%s' is ambiguous.\n") % inst.args[0])
2910 help_(u, 'shortlist')
2930 help_(u, 'shortlist')
2911 except UnknownCommand, inst:
2931 except UnknownCommand, inst:
2912 u.warn(_("hg: unknown command '%s'\n") % inst.args[0])
2932 u.warn(_("hg: unknown command '%s'\n") % inst.args[0])
2913 help_(u, 'shortlist')
2933 help_(u, 'shortlist')
2914 except SystemExit:
2934 except SystemExit:
2915 # don't catch this in the catch-all below
2935 # don't catch this in the catch-all below
2916 raise
2936 raise
2917 except:
2937 except:
2918 u.warn(_("** unknown exception encountered, details follow\n"))
2938 u.warn(_("** unknown exception encountered, details follow\n"))
2919 u.warn(_("** report bug details to mercurial@selenic.com\n"))
2939 u.warn(_("** report bug details to mercurial@selenic.com\n"))
2920 u.warn(_("** Mercurial Distributed SCM (version %s)\n")
2940 u.warn(_("** Mercurial Distributed SCM (version %s)\n")
2921 % version.get_version())
2941 % version.get_version())
2922 raise
2942 raise
2923
2943
2924 sys.exit(-1)
2944 sys.exit(-1)
@@ -1,173 +1,181 b''
1 #!/bin/sh
1 #!/bin/sh
2
2
3 hg init
3 hg init
4 mkdir d1 d1/d11 d2
4 mkdir d1 d1/d11 d2
5 echo d1/a > d1/a
5 echo d1/a > d1/a
6 echo d1/ba > d1/ba
6 echo d1/ba > d1/ba
7 echo d1/a1 > d1/d11/a1
7 echo d1/a1 > d1/d11/a1
8 echo d1/b > d1/b
8 echo d1/b > d1/b
9 echo d2/b > d2/b
9 echo d2/b > d2/b
10 hg add d1/a d1/b d1/ba d1/d11/a1 d2/b
10 hg add d1/a d1/b d1/ba d1/d11/a1 d2/b
11 hg commit -m "1" -d "0 0"
11 hg commit -m "1" -d "0 0"
12
12
13 echo "# rename a single file"
13 echo "# rename a single file"
14 hg rename d1/d11/a1 d2/c
14 hg rename d1/d11/a1 d2/c
15 hg status
15 hg status
16 hg update -C
16 hg update -C
17
17
18 echo "# rename --after a single file"
18 echo "# rename --after a single file"
19 mv d1/d11/a1 d2/c
19 mv d1/d11/a1 d2/c
20 hg rename --after d1/d11/a1 d2/c
20 hg rename --after d1/d11/a1 d2/c
21 hg status
21 hg status
22 hg update -C
22 hg update -C
23
23
24 echo "# move a single file to an existing directory"
24 echo "# move a single file to an existing directory"
25 hg rename d1/d11/a1 d2
25 hg rename d1/d11/a1 d2
26 hg status
26 hg status
27 hg update -C
27 hg update -C
28
28
29 echo "# move --after a single file to an existing directory"
29 echo "# move --after a single file to an existing directory"
30 mv d1/d11/a1 d2
30 mv d1/d11/a1 d2
31 hg rename --after d1/d11/a1 d2
31 hg rename --after d1/d11/a1 d2
32 hg status
32 hg status
33 hg update -C
33 hg update -C
34
34
35 echo "# rename a file using a relative path"
35 echo "# rename a file using a relative path"
36 (cd d1/d11; hg rename ../../d2/b e)
36 (cd d1/d11; hg rename ../../d2/b e)
37 hg status
37 hg status
38 hg update -C
38 hg update -C
39
39
40 echo "# rename --after a file using a relative path"
40 echo "# rename --after a file using a relative path"
41 (cd d1/d11; mv ../../d2/b e; hg rename --after ../../d2/b e)
41 (cd d1/d11; mv ../../d2/b e; hg rename --after ../../d2/b e)
42 hg status
42 hg status
43 hg update -C
43 hg update -C
44
44
45 echo "# rename directory d1 as d3"
45 echo "# rename directory d1 as d3"
46 hg rename d1/ d3
46 hg rename d1/ d3
47 hg status
47 hg status
48 hg update -C
48 hg update -C
49
49
50 echo "# rename --after directory d1 as d3"
50 echo "# rename --after directory d1 as d3"
51 mv d1 d3
51 mv d1 d3
52 hg rename --after d1 d3
52 hg rename --after d1 d3
53 hg status
53 hg status
54 hg update -C
54 hg update -C
55
55
56 echo "# move a directory using a relative path"
56 echo "# move a directory using a relative path"
57 (cd d2; mkdir d3; hg rename ../d1/d11 d3)
57 (cd d2; mkdir d3; hg rename ../d1/d11 d3)
58 hg status
58 hg status
59 hg update -C
59 hg update -C
60
60
61 echo "# move --after a directory using a relative path"
61 echo "# move --after a directory using a relative path"
62 (cd d2; mkdir d3; mv ../d1/d11 d3; hg rename --after ../d1/d11 d3)
62 (cd d2; mkdir d3; mv ../d1/d11 d3; hg rename --after ../d1/d11 d3)
63 hg status
63 hg status
64 hg update -C
64 hg update -C
65
65
66 echo "# move directory d1/d11 to an existing directory d2 (removes empty d1)"
66 echo "# move directory d1/d11 to an existing directory d2 (removes empty d1)"
67 hg rename d1/d11/ d2
67 hg rename d1/d11/ d2
68 hg status
68 hg status
69 hg update -C
69 hg update -C
70
70
71 echo "# move directories d1 and d2 to a new directory d3"
71 echo "# move directories d1 and d2 to a new directory d3"
72 mkdir d3
72 mkdir d3
73 hg rename d1 d2 d3
73 hg rename d1 d2 d3
74 hg status
74 hg status
75 hg update -C
75 hg update -C
76
76
77 echo "# move --after directories d1 and d2 to a new directory d3"
77 echo "# move --after directories d1 and d2 to a new directory d3"
78 mkdir d3
78 mkdir d3
79 mv d1 d2 d3
79 mv d1 d2 d3
80 hg rename --after d1 d2 d3
80 hg rename --after d1 d2 d3
81 hg status
81 hg status
82 hg update -C
82 hg update -C
83
83
84 echo "# move everything under directory d1 to existing directory d2, do not"
84 echo "# move everything under directory d1 to existing directory d2, do not"
85 echo "# overwrite existing files (d2/b)"
85 echo "# overwrite existing files (d2/b)"
86 hg rename d1/* d2
86 hg rename d1/* d2
87 hg status
87 hg status
88 diff d1/b d2/b
88 diff d1/b d2/b
89 hg update -C
89 hg update -C
90
90
91 echo "# attempt to move potentially more than one file into a non-existent"
91 echo "# attempt to move potentially more than one file into a non-existent"
92 echo "# directory"
92 echo "# directory"
93 hg rename 'glob:d1/**' dx
93 hg rename 'glob:d1/**' dx
94
94
95 echo "# move every file under d1 to d2/d21 (glob)"
95 echo "# move every file under d1 to d2/d21 (glob)"
96 mkdir d2/d21
96 mkdir d2/d21
97 hg rename 'glob:d1/**' d2/d21
97 hg rename 'glob:d1/**' d2/d21
98 hg status
98 hg status
99 hg update -C
99 hg update -C
100
100
101 echo "# move --after some files under d1 to d2/d21 (glob)"
101 echo "# move --after some files under d1 to d2/d21 (glob)"
102 mkdir d2/d21
102 mkdir d2/d21
103 mv d1/a d1/d11/a1 d2/d21
103 mv d1/a d1/d11/a1 d2/d21
104 hg rename --after 'glob:d1/**' d2/d21
104 hg rename --after 'glob:d1/**' d2/d21
105 hg status
105 hg status
106 hg update -C
106 hg update -C
107
107
108 echo "# move every file under d1 starting with an 'a' to d2/d21 (regexp)"
108 echo "# move every file under d1 starting with an 'a' to d2/d21 (regexp)"
109 mkdir d2/d21
109 mkdir d2/d21
110 hg rename 're:d1/([^a][^/]*/)*a.*' d2/d21
110 hg rename 're:d1/([^a][^/]*/)*a.*' d2/d21
111 hg status
111 hg status
112 hg update -C
112 hg update -C
113
113
114 echo "# attempt to overwrite an existing file"
114 echo "# attempt to overwrite an existing file"
115 echo "ca" > d1/ca
115 echo "ca" > d1/ca
116 hg rename d1/ba d1/ca
116 hg rename d1/ba d1/ca
117 hg status
117 hg status
118 hg update -C
118 hg update -C
119
119
120 echo "# forced overwrite of an existing file"
120 echo "# forced overwrite of an existing file"
121 echo "ca" > d1/ca
121 echo "ca" > d1/ca
122 hg rename --force d1/ba d1/ca
122 hg rename --force d1/ba d1/ca
123 hg status
123 hg status
124 hg update -C
124 hg update -C
125
125
126 echo "# replace a symlink with a file"
126 echo "# replace a symlink with a file"
127 ln -s ba d1/ca
127 ln -s ba d1/ca
128 hg rename --force d1/ba d1/ca
128 hg rename --force d1/ba d1/ca
129 hg status
129 hg status
130 hg update -C
130 hg update -C
131
131
132 echo "# do not copy more than one source file to the same destination file"
132 echo "# do not copy more than one source file to the same destination file"
133 mkdir d3
133 mkdir d3
134 hg rename d1/* d2/* d3
134 hg rename d1/* d2/* d3
135 hg status
135 hg status
136 hg update -C
136 hg update -C
137
137
138 echo "# move a whole subtree with \"hg rename .\""
138 echo "# move a whole subtree with \"hg rename .\""
139 mkdir d3
139 mkdir d3
140 (cd d1; hg rename . ../d3)
140 (cd d1; hg rename . ../d3)
141 hg status
141 hg status
142 hg update -C
142 hg update -C
143
143
144 echo "# move a whole subtree with \"hg rename --after .\""
144 echo "# move a whole subtree with \"hg rename --after .\""
145 mkdir d3
145 mkdir d3
146 mv d1/* d3
146 mv d1/* d3
147 (cd d1; hg rename --after . ../d3)
147 (cd d1; hg rename --after . ../d3)
148 hg status
148 hg status
149 hg update -C
149 hg update -C
150
150
151 echo "# move the parent tree with \"hg rename ..\""
151 echo "# move the parent tree with \"hg rename ..\""
152 (cd d1/d11; hg rename .. ../../d3)
152 (cd d1/d11; hg rename .. ../../d3)
153 hg status
153 hg status
154 hg update -C
154 hg update -C
155
155
156 echo "# skip removed files"
156 echo "# skip removed files"
157 hg remove d1/b
157 hg remove d1/b
158 hg rename d1 d3
158 hg rename d1 d3
159 hg status
159 hg status
160 hg update -C
160 hg update -C
161
161
162 echo "# transitive rename"
162 echo "# transitive rename"
163 hg rename d1/b d1/bb
163 hg rename d1/b d1/bb
164 hg rename d1/bb d1/bc
164 hg rename d1/bb d1/bc
165 hg status
165 hg status
166 hg update -C
166 hg update -C
167
167
168 echo "# transitive rename --after"
168 echo "# transitive rename --after"
169 hg rename d1/b d1/bb
169 hg rename d1/b d1/bb
170 mv d1/bb d1/bc
170 mv d1/bb d1/bc
171 hg rename --after d1/bb d1/bc
171 hg rename --after d1/bb d1/bc
172 hg status
172 hg status
173 hg update -C
173 hg update -C
174
175 echo "# idempotent renames (d1/b -> d1/bb followed by d1/bb -> d1/b)"
176 hg rename d1/b d1/bb
177 echo "some stuff added to d1/bb" >> d1/bb
178 hg rename d1/bb d1/b
179 hg status
180 hg debugstate | grep copy
181 hg update -C
@@ -1,254 +1,256 b''
1 # rename a single file
1 # rename a single file
2 A d2/c
2 A d2/c
3 R d1/d11/a1
3 R d1/d11/a1
4 # rename --after a single file
4 # rename --after a single file
5 A d2/c
5 A d2/c
6 R d1/d11/a1
6 R d1/d11/a1
7 # move a single file to an existing directory
7 # move a single file to an existing directory
8 A d2/a1
8 A d2/a1
9 R d1/d11/a1
9 R d1/d11/a1
10 # move --after a single file to an existing directory
10 # move --after a single file to an existing directory
11 A d2/a1
11 A d2/a1
12 R d1/d11/a1
12 R d1/d11/a1
13 # rename a file using a relative path
13 # rename a file using a relative path
14 A d1/d11/e
14 A d1/d11/e
15 R d2/b
15 R d2/b
16 # rename --after a file using a relative path
16 # rename --after a file using a relative path
17 A d1/d11/e
17 A d1/d11/e
18 R d2/b
18 R d2/b
19 # rename directory d1 as d3
19 # rename directory d1 as d3
20 copying d1/a to d3/a
20 copying d1/a to d3/a
21 copying d1/b to d3/b
21 copying d1/b to d3/b
22 copying d1/ba to d3/ba
22 copying d1/ba to d3/ba
23 copying d1/d11/a1 to d3/d11/a1
23 copying d1/d11/a1 to d3/d11/a1
24 removing d1/a
24 removing d1/a
25 removing d1/b
25 removing d1/b
26 removing d1/ba
26 removing d1/ba
27 removing d1/d11/a1
27 removing d1/d11/a1
28 A d3/a
28 A d3/a
29 A d3/b
29 A d3/b
30 A d3/ba
30 A d3/ba
31 A d3/d11/a1
31 A d3/d11/a1
32 R d1/a
32 R d1/a
33 R d1/b
33 R d1/b
34 R d1/ba
34 R d1/ba
35 R d1/d11/a1
35 R d1/d11/a1
36 # rename --after directory d1 as d3
36 # rename --after directory d1 as d3
37 copying d1/a to d3/a
37 copying d1/a to d3/a
38 copying d1/b to d3/b
38 copying d1/b to d3/b
39 copying d1/ba to d3/ba
39 copying d1/ba to d3/ba
40 copying d1/d11/a1 to d3/d11/a1
40 copying d1/d11/a1 to d3/d11/a1
41 removing d1/a
41 removing d1/a
42 removing d1/b
42 removing d1/b
43 removing d1/ba
43 removing d1/ba
44 removing d1/d11/a1
44 removing d1/d11/a1
45 A d3/a
45 A d3/a
46 A d3/b
46 A d3/b
47 A d3/ba
47 A d3/ba
48 A d3/d11/a1
48 A d3/d11/a1
49 R d1/a
49 R d1/a
50 R d1/b
50 R d1/b
51 R d1/ba
51 R d1/ba
52 R d1/d11/a1
52 R d1/d11/a1
53 # move a directory using a relative path
53 # move a directory using a relative path
54 copying ../d1/d11/a1 to d3/d11/a1
54 copying ../d1/d11/a1 to d3/d11/a1
55 removing ../d1/d11/a1
55 removing ../d1/d11/a1
56 A d2/d3/d11/a1
56 A d2/d3/d11/a1
57 R d1/d11/a1
57 R d1/d11/a1
58 # move --after a directory using a relative path
58 # move --after a directory using a relative path
59 copying ../d1/d11/a1 to d3/d11/a1
59 copying ../d1/d11/a1 to d3/d11/a1
60 removing ../d1/d11/a1
60 removing ../d1/d11/a1
61 A d2/d3/d11/a1
61 A d2/d3/d11/a1
62 R d1/d11/a1
62 R d1/d11/a1
63 # move directory d1/d11 to an existing directory d2 (removes empty d1)
63 # move directory d1/d11 to an existing directory d2 (removes empty d1)
64 copying d1/d11/a1 to d2/d11/a1
64 copying d1/d11/a1 to d2/d11/a1
65 removing d1/d11/a1
65 removing d1/d11/a1
66 A d2/d11/a1
66 A d2/d11/a1
67 R d1/d11/a1
67 R d1/d11/a1
68 # move directories d1 and d2 to a new directory d3
68 # move directories d1 and d2 to a new directory d3
69 copying d1/a to d3/d1/a
69 copying d1/a to d3/d1/a
70 copying d1/b to d3/d1/b
70 copying d1/b to d3/d1/b
71 copying d1/ba to d3/d1/ba
71 copying d1/ba to d3/d1/ba
72 copying d1/d11/a1 to d3/d1/d11/a1
72 copying d1/d11/a1 to d3/d1/d11/a1
73 copying d2/b to d3/d2/b
73 copying d2/b to d3/d2/b
74 removing d1/a
74 removing d1/a
75 removing d1/b
75 removing d1/b
76 removing d1/ba
76 removing d1/ba
77 removing d1/d11/a1
77 removing d1/d11/a1
78 removing d2/b
78 removing d2/b
79 A d3/d1/a
79 A d3/d1/a
80 A d3/d1/b
80 A d3/d1/b
81 A d3/d1/ba
81 A d3/d1/ba
82 A d3/d1/d11/a1
82 A d3/d1/d11/a1
83 A d3/d2/b
83 A d3/d2/b
84 R d1/a
84 R d1/a
85 R d1/b
85 R d1/b
86 R d1/ba
86 R d1/ba
87 R d1/d11/a1
87 R d1/d11/a1
88 R d2/b
88 R d2/b
89 # move --after directories d1 and d2 to a new directory d3
89 # move --after directories d1 and d2 to a new directory d3
90 copying d1/a to d3/d1/a
90 copying d1/a to d3/d1/a
91 copying d1/b to d3/d1/b
91 copying d1/b to d3/d1/b
92 copying d1/ba to d3/d1/ba
92 copying d1/ba to d3/d1/ba
93 copying d1/d11/a1 to d3/d1/d11/a1
93 copying d1/d11/a1 to d3/d1/d11/a1
94 copying d2/b to d3/d2/b
94 copying d2/b to d3/d2/b
95 removing d1/a
95 removing d1/a
96 removing d1/b
96 removing d1/b
97 removing d1/ba
97 removing d1/ba
98 removing d1/d11/a1
98 removing d1/d11/a1
99 removing d2/b
99 removing d2/b
100 A d3/d1/a
100 A d3/d1/a
101 A d3/d1/b
101 A d3/d1/b
102 A d3/d1/ba
102 A d3/d1/ba
103 A d3/d1/d11/a1
103 A d3/d1/d11/a1
104 A d3/d2/b
104 A d3/d2/b
105 R d1/a
105 R d1/a
106 R d1/b
106 R d1/b
107 R d1/ba
107 R d1/ba
108 R d1/d11/a1
108 R d1/d11/a1
109 R d2/b
109 R d2/b
110 # move everything under directory d1 to existing directory d2, do not
110 # move everything under directory d1 to existing directory d2, do not
111 # overwrite existing files (d2/b)
111 # overwrite existing files (d2/b)
112 d2/b: not overwriting - file exists
112 d2/b: not overwriting - file exists
113 copying d1/d11/a1 to d2/d11/a1
113 copying d1/d11/a1 to d2/d11/a1
114 removing d1/d11/a1
114 removing d1/d11/a1
115 A d2/a
115 A d2/a
116 A d2/ba
116 A d2/ba
117 A d2/d11/a1
117 A d2/d11/a1
118 R d1/a
118 R d1/a
119 R d1/ba
119 R d1/ba
120 R d1/d11/a1
120 R d1/d11/a1
121 1c1
121 1c1
122 < d1/b
122 < d1/b
123 ---
123 ---
124 > d2/b
124 > d2/b
125 # attempt to move potentially more than one file into a non-existent
125 # attempt to move potentially more than one file into a non-existent
126 # directory
126 # directory
127 abort: with multiple sources, destination must be an existing directory
127 abort: with multiple sources, destination must be an existing directory
128 # move every file under d1 to d2/d21 (glob)
128 # move every file under d1 to d2/d21 (glob)
129 copying d1/a to d2/d21/a
129 copying d1/a to d2/d21/a
130 copying d1/b to d2/d21/b
130 copying d1/b to d2/d21/b
131 copying d1/ba to d2/d21/ba
131 copying d1/ba to d2/d21/ba
132 copying d1/d11/a1 to d2/d21/a1
132 copying d1/d11/a1 to d2/d21/a1
133 removing d1/a
133 removing d1/a
134 removing d1/b
134 removing d1/b
135 removing d1/ba
135 removing d1/ba
136 removing d1/d11/a1
136 removing d1/d11/a1
137 A d2/d21/a
137 A d2/d21/a
138 A d2/d21/a1
138 A d2/d21/a1
139 A d2/d21/b
139 A d2/d21/b
140 A d2/d21/ba
140 A d2/d21/ba
141 R d1/a
141 R d1/a
142 R d1/b
142 R d1/b
143 R d1/ba
143 R d1/ba
144 R d1/d11/a1
144 R d1/d11/a1
145 # move --after some files under d1 to d2/d21 (glob)
145 # move --after some files under d1 to d2/d21 (glob)
146 copying d1/a to d2/d21/a
146 copying d1/a to d2/d21/a
147 copying d1/d11/a1 to d2/d21/a1
147 copying d1/d11/a1 to d2/d21/a1
148 removing d1/a
148 removing d1/a
149 removing d1/d11/a1
149 removing d1/d11/a1
150 A d2/d21/a
150 A d2/d21/a
151 A d2/d21/a1
151 A d2/d21/a1
152 R d1/a
152 R d1/a
153 R d1/d11/a1
153 R d1/d11/a1
154 # move every file under d1 starting with an 'a' to d2/d21 (regexp)
154 # move every file under d1 starting with an 'a' to d2/d21 (regexp)
155 copying d1/a to d2/d21/a
155 copying d1/a to d2/d21/a
156 copying d1/d11/a1 to d2/d21/a1
156 copying d1/d11/a1 to d2/d21/a1
157 removing d1/a
157 removing d1/a
158 removing d1/d11/a1
158 removing d1/d11/a1
159 A d2/d21/a
159 A d2/d21/a
160 A d2/d21/a1
160 A d2/d21/a1
161 R d1/a
161 R d1/a
162 R d1/d11/a1
162 R d1/d11/a1
163 # attempt to overwrite an existing file
163 # attempt to overwrite an existing file
164 d1/ca: not overwriting - file exists
164 d1/ca: not overwriting - file exists
165 ? d1/ca
165 ? d1/ca
166 # forced overwrite of an existing file
166 # forced overwrite of an existing file
167 A d1/ca
167 A d1/ca
168 R d1/ba
168 R d1/ba
169 # replace a symlink with a file
169 # replace a symlink with a file
170 A d1/ca
170 A d1/ca
171 R d1/ba
171 R d1/ba
172 # do not copy more than one source file to the same destination file
172 # do not copy more than one source file to the same destination file
173 copying d1/d11/a1 to d3/d11/a1
173 copying d1/d11/a1 to d3/d11/a1
174 d3/b: not overwriting - d2/b collides with d1/b
174 d3/b: not overwriting - d2/b collides with d1/b
175 removing d1/d11/a1
175 removing d1/d11/a1
176 A d3/a
176 A d3/a
177 A d3/b
177 A d3/b
178 A d3/ba
178 A d3/ba
179 A d3/d11/a1
179 A d3/d11/a1
180 R d1/a
180 R d1/a
181 R d1/b
181 R d1/b
182 R d1/ba
182 R d1/ba
183 R d1/d11/a1
183 R d1/d11/a1
184 # move a whole subtree with "hg rename ."
184 # move a whole subtree with "hg rename ."
185 copying a to ../d3/d1/a
185 copying a to ../d3/d1/a
186 copying b to ../d3/d1/b
186 copying b to ../d3/d1/b
187 copying ba to ../d3/d1/ba
187 copying ba to ../d3/d1/ba
188 copying d11/a1 to ../d3/d1/d11/a1
188 copying d11/a1 to ../d3/d1/d11/a1
189 removing a
189 removing a
190 removing b
190 removing b
191 removing ba
191 removing ba
192 removing d11/a1
192 removing d11/a1
193 A d3/d1/a
193 A d3/d1/a
194 A d3/d1/b
194 A d3/d1/b
195 A d3/d1/ba
195 A d3/d1/ba
196 A d3/d1/d11/a1
196 A d3/d1/d11/a1
197 R d1/a
197 R d1/a
198 R d1/b
198 R d1/b
199 R d1/ba
199 R d1/ba
200 R d1/d11/a1
200 R d1/d11/a1
201 # move a whole subtree with "hg rename --after ."
201 # move a whole subtree with "hg rename --after ."
202 copying a to ../d3/a
202 copying a to ../d3/a
203 copying b to ../d3/b
203 copying b to ../d3/b
204 copying ba to ../d3/ba
204 copying ba to ../d3/ba
205 copying d11/a1 to ../d3/d11/a1
205 copying d11/a1 to ../d3/d11/a1
206 removing a
206 removing a
207 removing b
207 removing b
208 removing ba
208 removing ba
209 removing d11/a1
209 removing d11/a1
210 A d3/a
210 A d3/a
211 A d3/b
211 A d3/b
212 A d3/ba
212 A d3/ba
213 A d3/d11/a1
213 A d3/d11/a1
214 R d1/a
214 R d1/a
215 R d1/b
215 R d1/b
216 R d1/ba
216 R d1/ba
217 R d1/d11/a1
217 R d1/d11/a1
218 # move the parent tree with "hg rename .."
218 # move the parent tree with "hg rename .."
219 copying ../a to ../../d3/a
219 copying ../a to ../../d3/a
220 copying ../b to ../../d3/b
220 copying ../b to ../../d3/b
221 copying ../ba to ../../d3/ba
221 copying ../ba to ../../d3/ba
222 copying a1 to ../../d3/d11/a1
222 copying a1 to ../../d3/d11/a1
223 removing ../a
223 removing ../a
224 removing ../b
224 removing ../b
225 removing ../ba
225 removing ../ba
226 removing a1
226 removing a1
227 A d3/a
227 A d3/a
228 A d3/b
228 A d3/b
229 A d3/ba
229 A d3/ba
230 A d3/d11/a1
230 A d3/d11/a1
231 R d1/a
231 R d1/a
232 R d1/b
232 R d1/b
233 R d1/ba
233 R d1/ba
234 R d1/d11/a1
234 R d1/d11/a1
235 # skip removed files
235 # skip removed files
236 copying d1/a to d3/a
236 copying d1/a to d3/a
237 copying d1/ba to d3/ba
237 copying d1/ba to d3/ba
238 copying d1/d11/a1 to d3/d11/a1
238 copying d1/d11/a1 to d3/d11/a1
239 removing d1/a
239 removing d1/a
240 removing d1/ba
240 removing d1/ba
241 removing d1/d11/a1
241 removing d1/d11/a1
242 A d3/a
242 A d3/a
243 A d3/ba
243 A d3/ba
244 A d3/d11/a1
244 A d3/d11/a1
245 R d1/a
245 R d1/a
246 R d1/b
246 R d1/b
247 R d1/ba
247 R d1/ba
248 R d1/d11/a1
248 R d1/d11/a1
249 # transitive rename
249 # transitive rename
250 A d1/bc
250 A d1/bc
251 R d1/b
251 R d1/b
252 # transitive rename --after
252 # transitive rename --after
253 A d1/bc
253 A d1/bc
254 R d1/b
254 R d1/b
255 # idempotent renames (d1/b -> d1/bb followed by d1/bb -> d1/b)
256 M d1/b
General Comments 0
You need to be logged in to leave comments. Login now