##// END OF EJS Templates
merge: only show "cannot merge flags for %s" warning if flags are different
Mads Kiilerich -
r30161:339f9d93 default
parent child Browse files
Show More
@@ -1,1674 +1,1674 b''
1 # merge.py - directory-level update/merge handling for Mercurial
1 # merge.py - directory-level update/merge handling for Mercurial
2 #
2 #
3 # Copyright 2006, 2007 Matt Mackall <mpm@selenic.com>
3 # Copyright 2006, 2007 Matt Mackall <mpm@selenic.com>
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 from __future__ import absolute_import
8 from __future__ import absolute_import
9
9
10 import errno
10 import errno
11 import hashlib
11 import hashlib
12 import os
12 import os
13 import shutil
13 import shutil
14 import struct
14 import struct
15
15
16 from .i18n import _
16 from .i18n import _
17 from .node import (
17 from .node import (
18 bin,
18 bin,
19 hex,
19 hex,
20 nullhex,
20 nullhex,
21 nullid,
21 nullid,
22 nullrev,
22 nullrev,
23 )
23 )
24 from . import (
24 from . import (
25 copies,
25 copies,
26 destutil,
26 destutil,
27 error,
27 error,
28 filemerge,
28 filemerge,
29 obsolete,
29 obsolete,
30 scmutil,
30 scmutil,
31 subrepo,
31 subrepo,
32 util,
32 util,
33 worker,
33 worker,
34 )
34 )
35
35
36 _pack = struct.pack
36 _pack = struct.pack
37 _unpack = struct.unpack
37 _unpack = struct.unpack
38
38
39 def _droponode(data):
39 def _droponode(data):
40 # used for compatibility for v1
40 # used for compatibility for v1
41 bits = data.split('\0')
41 bits = data.split('\0')
42 bits = bits[:-2] + bits[-1:]
42 bits = bits[:-2] + bits[-1:]
43 return '\0'.join(bits)
43 return '\0'.join(bits)
44
44
45 class mergestate(object):
45 class mergestate(object):
46 '''track 3-way merge state of individual files
46 '''track 3-way merge state of individual files
47
47
48 The merge state is stored on disk when needed. Two files are used: one with
48 The merge state is stored on disk when needed. Two files are used: one with
49 an old format (version 1), and one with a new format (version 2). Version 2
49 an old format (version 1), and one with a new format (version 2). Version 2
50 stores a superset of the data in version 1, including new kinds of records
50 stores a superset of the data in version 1, including new kinds of records
51 in the future. For more about the new format, see the documentation for
51 in the future. For more about the new format, see the documentation for
52 `_readrecordsv2`.
52 `_readrecordsv2`.
53
53
54 Each record can contain arbitrary content, and has an associated type. This
54 Each record can contain arbitrary content, and has an associated type. This
55 `type` should be a letter. If `type` is uppercase, the record is mandatory:
55 `type` should be a letter. If `type` is uppercase, the record is mandatory:
56 versions of Mercurial that don't support it should abort. If `type` is
56 versions of Mercurial that don't support it should abort. If `type` is
57 lowercase, the record can be safely ignored.
57 lowercase, the record can be safely ignored.
58
58
59 Currently known records:
59 Currently known records:
60
60
61 L: the node of the "local" part of the merge (hexified version)
61 L: the node of the "local" part of the merge (hexified version)
62 O: the node of the "other" part of the merge (hexified version)
62 O: the node of the "other" part of the merge (hexified version)
63 F: a file to be merged entry
63 F: a file to be merged entry
64 C: a change/delete or delete/change conflict
64 C: a change/delete or delete/change conflict
65 D: a file that the external merge driver will merge internally
65 D: a file that the external merge driver will merge internally
66 (experimental)
66 (experimental)
67 m: the external merge driver defined for this merge plus its run state
67 m: the external merge driver defined for this merge plus its run state
68 (experimental)
68 (experimental)
69 f: a (filename, dictonary) tuple of optional values for a given file
69 f: a (filename, dictonary) tuple of optional values for a given file
70 X: unsupported mandatory record type (used in tests)
70 X: unsupported mandatory record type (used in tests)
71 x: unsupported advisory record type (used in tests)
71 x: unsupported advisory record type (used in tests)
72 l: the labels for the parts of the merge.
72 l: the labels for the parts of the merge.
73
73
74 Merge driver run states (experimental):
74 Merge driver run states (experimental):
75 u: driver-resolved files unmarked -- needs to be run next time we're about
75 u: driver-resolved files unmarked -- needs to be run next time we're about
76 to resolve or commit
76 to resolve or commit
77 m: driver-resolved files marked -- only needs to be run before commit
77 m: driver-resolved files marked -- only needs to be run before commit
78 s: success/skipped -- does not need to be run any more
78 s: success/skipped -- does not need to be run any more
79
79
80 '''
80 '''
81 statepathv1 = 'merge/state'
81 statepathv1 = 'merge/state'
82 statepathv2 = 'merge/state2'
82 statepathv2 = 'merge/state2'
83
83
84 @staticmethod
84 @staticmethod
85 def clean(repo, node=None, other=None, labels=None):
85 def clean(repo, node=None, other=None, labels=None):
86 """Initialize a brand new merge state, removing any existing state on
86 """Initialize a brand new merge state, removing any existing state on
87 disk."""
87 disk."""
88 ms = mergestate(repo)
88 ms = mergestate(repo)
89 ms.reset(node, other, labels)
89 ms.reset(node, other, labels)
90 return ms
90 return ms
91
91
92 @staticmethod
92 @staticmethod
93 def read(repo):
93 def read(repo):
94 """Initialize the merge state, reading it from disk."""
94 """Initialize the merge state, reading it from disk."""
95 ms = mergestate(repo)
95 ms = mergestate(repo)
96 ms._read()
96 ms._read()
97 return ms
97 return ms
98
98
99 def __init__(self, repo):
99 def __init__(self, repo):
100 """Initialize the merge state.
100 """Initialize the merge state.
101
101
102 Do not use this directly! Instead call read() or clean()."""
102 Do not use this directly! Instead call read() or clean()."""
103 self._repo = repo
103 self._repo = repo
104 self._dirty = False
104 self._dirty = False
105 self._labels = None
105 self._labels = None
106
106
107 def reset(self, node=None, other=None, labels=None):
107 def reset(self, node=None, other=None, labels=None):
108 self._state = {}
108 self._state = {}
109 self._stateextras = {}
109 self._stateextras = {}
110 self._local = None
110 self._local = None
111 self._other = None
111 self._other = None
112 self._labels = labels
112 self._labels = labels
113 for var in ('localctx', 'otherctx'):
113 for var in ('localctx', 'otherctx'):
114 if var in vars(self):
114 if var in vars(self):
115 delattr(self, var)
115 delattr(self, var)
116 if node:
116 if node:
117 self._local = node
117 self._local = node
118 self._other = other
118 self._other = other
119 self._readmergedriver = None
119 self._readmergedriver = None
120 if self.mergedriver:
120 if self.mergedriver:
121 self._mdstate = 's'
121 self._mdstate = 's'
122 else:
122 else:
123 self._mdstate = 'u'
123 self._mdstate = 'u'
124 shutil.rmtree(self._repo.join('merge'), True)
124 shutil.rmtree(self._repo.join('merge'), True)
125 self._results = {}
125 self._results = {}
126 self._dirty = False
126 self._dirty = False
127
127
128 def _read(self):
128 def _read(self):
129 """Analyse each record content to restore a serialized state from disk
129 """Analyse each record content to restore a serialized state from disk
130
130
131 This function process "record" entry produced by the de-serialization
131 This function process "record" entry produced by the de-serialization
132 of on disk file.
132 of on disk file.
133 """
133 """
134 self._state = {}
134 self._state = {}
135 self._stateextras = {}
135 self._stateextras = {}
136 self._local = None
136 self._local = None
137 self._other = None
137 self._other = None
138 for var in ('localctx', 'otherctx'):
138 for var in ('localctx', 'otherctx'):
139 if var in vars(self):
139 if var in vars(self):
140 delattr(self, var)
140 delattr(self, var)
141 self._readmergedriver = None
141 self._readmergedriver = None
142 self._mdstate = 's'
142 self._mdstate = 's'
143 unsupported = set()
143 unsupported = set()
144 records = self._readrecords()
144 records = self._readrecords()
145 for rtype, record in records:
145 for rtype, record in records:
146 if rtype == 'L':
146 if rtype == 'L':
147 self._local = bin(record)
147 self._local = bin(record)
148 elif rtype == 'O':
148 elif rtype == 'O':
149 self._other = bin(record)
149 self._other = bin(record)
150 elif rtype == 'm':
150 elif rtype == 'm':
151 bits = record.split('\0', 1)
151 bits = record.split('\0', 1)
152 mdstate = bits[1]
152 mdstate = bits[1]
153 if len(mdstate) != 1 or mdstate not in 'ums':
153 if len(mdstate) != 1 or mdstate not in 'ums':
154 # the merge driver should be idempotent, so just rerun it
154 # the merge driver should be idempotent, so just rerun it
155 mdstate = 'u'
155 mdstate = 'u'
156
156
157 self._readmergedriver = bits[0]
157 self._readmergedriver = bits[0]
158 self._mdstate = mdstate
158 self._mdstate = mdstate
159 elif rtype in 'FDC':
159 elif rtype in 'FDC':
160 bits = record.split('\0')
160 bits = record.split('\0')
161 self._state[bits[0]] = bits[1:]
161 self._state[bits[0]] = bits[1:]
162 elif rtype == 'f':
162 elif rtype == 'f':
163 filename, rawextras = record.split('\0', 1)
163 filename, rawextras = record.split('\0', 1)
164 extraparts = rawextras.split('\0')
164 extraparts = rawextras.split('\0')
165 extras = {}
165 extras = {}
166 i = 0
166 i = 0
167 while i < len(extraparts):
167 while i < len(extraparts):
168 extras[extraparts[i]] = extraparts[i + 1]
168 extras[extraparts[i]] = extraparts[i + 1]
169 i += 2
169 i += 2
170
170
171 self._stateextras[filename] = extras
171 self._stateextras[filename] = extras
172 elif rtype == 'l':
172 elif rtype == 'l':
173 labels = record.split('\0', 2)
173 labels = record.split('\0', 2)
174 self._labels = [l for l in labels if len(l) > 0]
174 self._labels = [l for l in labels if len(l) > 0]
175 elif not rtype.islower():
175 elif not rtype.islower():
176 unsupported.add(rtype)
176 unsupported.add(rtype)
177 self._results = {}
177 self._results = {}
178 self._dirty = False
178 self._dirty = False
179
179
180 if unsupported:
180 if unsupported:
181 raise error.UnsupportedMergeRecords(unsupported)
181 raise error.UnsupportedMergeRecords(unsupported)
182
182
183 def _readrecords(self):
183 def _readrecords(self):
184 """Read merge state from disk and return a list of record (TYPE, data)
184 """Read merge state from disk and return a list of record (TYPE, data)
185
185
186 We read data from both v1 and v2 files and decide which one to use.
186 We read data from both v1 and v2 files and decide which one to use.
187
187
188 V1 has been used by version prior to 2.9.1 and contains less data than
188 V1 has been used by version prior to 2.9.1 and contains less data than
189 v2. We read both versions and check if no data in v2 contradicts
189 v2. We read both versions and check if no data in v2 contradicts
190 v1. If there is not contradiction we can safely assume that both v1
190 v1. If there is not contradiction we can safely assume that both v1
191 and v2 were written at the same time and use the extract data in v2. If
191 and v2 were written at the same time and use the extract data in v2. If
192 there is contradiction we ignore v2 content as we assume an old version
192 there is contradiction we ignore v2 content as we assume an old version
193 of Mercurial has overwritten the mergestate file and left an old v2
193 of Mercurial has overwritten the mergestate file and left an old v2
194 file around.
194 file around.
195
195
196 returns list of record [(TYPE, data), ...]"""
196 returns list of record [(TYPE, data), ...]"""
197 v1records = self._readrecordsv1()
197 v1records = self._readrecordsv1()
198 v2records = self._readrecordsv2()
198 v2records = self._readrecordsv2()
199 if self._v1v2match(v1records, v2records):
199 if self._v1v2match(v1records, v2records):
200 return v2records
200 return v2records
201 else:
201 else:
202 # v1 file is newer than v2 file, use it
202 # v1 file is newer than v2 file, use it
203 # we have to infer the "other" changeset of the merge
203 # we have to infer the "other" changeset of the merge
204 # we cannot do better than that with v1 of the format
204 # we cannot do better than that with v1 of the format
205 mctx = self._repo[None].parents()[-1]
205 mctx = self._repo[None].parents()[-1]
206 v1records.append(('O', mctx.hex()))
206 v1records.append(('O', mctx.hex()))
207 # add place holder "other" file node information
207 # add place holder "other" file node information
208 # nobody is using it yet so we do no need to fetch the data
208 # nobody is using it yet so we do no need to fetch the data
209 # if mctx was wrong `mctx[bits[-2]]` may fails.
209 # if mctx was wrong `mctx[bits[-2]]` may fails.
210 for idx, r in enumerate(v1records):
210 for idx, r in enumerate(v1records):
211 if r[0] == 'F':
211 if r[0] == 'F':
212 bits = r[1].split('\0')
212 bits = r[1].split('\0')
213 bits.insert(-2, '')
213 bits.insert(-2, '')
214 v1records[idx] = (r[0], '\0'.join(bits))
214 v1records[idx] = (r[0], '\0'.join(bits))
215 return v1records
215 return v1records
216
216
217 def _v1v2match(self, v1records, v2records):
217 def _v1v2match(self, v1records, v2records):
218 oldv2 = set() # old format version of v2 record
218 oldv2 = set() # old format version of v2 record
219 for rec in v2records:
219 for rec in v2records:
220 if rec[0] == 'L':
220 if rec[0] == 'L':
221 oldv2.add(rec)
221 oldv2.add(rec)
222 elif rec[0] == 'F':
222 elif rec[0] == 'F':
223 # drop the onode data (not contained in v1)
223 # drop the onode data (not contained in v1)
224 oldv2.add(('F', _droponode(rec[1])))
224 oldv2.add(('F', _droponode(rec[1])))
225 for rec in v1records:
225 for rec in v1records:
226 if rec not in oldv2:
226 if rec not in oldv2:
227 return False
227 return False
228 else:
228 else:
229 return True
229 return True
230
230
231 def _readrecordsv1(self):
231 def _readrecordsv1(self):
232 """read on disk merge state for version 1 file
232 """read on disk merge state for version 1 file
233
233
234 returns list of record [(TYPE, data), ...]
234 returns list of record [(TYPE, data), ...]
235
235
236 Note: the "F" data from this file are one entry short
236 Note: the "F" data from this file are one entry short
237 (no "other file node" entry)
237 (no "other file node" entry)
238 """
238 """
239 records = []
239 records = []
240 try:
240 try:
241 f = self._repo.vfs(self.statepathv1)
241 f = self._repo.vfs(self.statepathv1)
242 for i, l in enumerate(f):
242 for i, l in enumerate(f):
243 if i == 0:
243 if i == 0:
244 records.append(('L', l[:-1]))
244 records.append(('L', l[:-1]))
245 else:
245 else:
246 records.append(('F', l[:-1]))
246 records.append(('F', l[:-1]))
247 f.close()
247 f.close()
248 except IOError as err:
248 except IOError as err:
249 if err.errno != errno.ENOENT:
249 if err.errno != errno.ENOENT:
250 raise
250 raise
251 return records
251 return records
252
252
253 def _readrecordsv2(self):
253 def _readrecordsv2(self):
254 """read on disk merge state for version 2 file
254 """read on disk merge state for version 2 file
255
255
256 This format is a list of arbitrary records of the form:
256 This format is a list of arbitrary records of the form:
257
257
258 [type][length][content]
258 [type][length][content]
259
259
260 `type` is a single character, `length` is a 4 byte integer, and
260 `type` is a single character, `length` is a 4 byte integer, and
261 `content` is an arbitrary byte sequence of length `length`.
261 `content` is an arbitrary byte sequence of length `length`.
262
262
263 Mercurial versions prior to 3.7 have a bug where if there are
263 Mercurial versions prior to 3.7 have a bug where if there are
264 unsupported mandatory merge records, attempting to clear out the merge
264 unsupported mandatory merge records, attempting to clear out the merge
265 state with hg update --clean or similar aborts. The 't' record type
265 state with hg update --clean or similar aborts. The 't' record type
266 works around that by writing out what those versions treat as an
266 works around that by writing out what those versions treat as an
267 advisory record, but later versions interpret as special: the first
267 advisory record, but later versions interpret as special: the first
268 character is the 'real' record type and everything onwards is the data.
268 character is the 'real' record type and everything onwards is the data.
269
269
270 Returns list of records [(TYPE, data), ...]."""
270 Returns list of records [(TYPE, data), ...]."""
271 records = []
271 records = []
272 try:
272 try:
273 f = self._repo.vfs(self.statepathv2)
273 f = self._repo.vfs(self.statepathv2)
274 data = f.read()
274 data = f.read()
275 off = 0
275 off = 0
276 end = len(data)
276 end = len(data)
277 while off < end:
277 while off < end:
278 rtype = data[off]
278 rtype = data[off]
279 off += 1
279 off += 1
280 length = _unpack('>I', data[off:(off + 4)])[0]
280 length = _unpack('>I', data[off:(off + 4)])[0]
281 off += 4
281 off += 4
282 record = data[off:(off + length)]
282 record = data[off:(off + length)]
283 off += length
283 off += length
284 if rtype == 't':
284 if rtype == 't':
285 rtype, record = record[0], record[1:]
285 rtype, record = record[0], record[1:]
286 records.append((rtype, record))
286 records.append((rtype, record))
287 f.close()
287 f.close()
288 except IOError as err:
288 except IOError as err:
289 if err.errno != errno.ENOENT:
289 if err.errno != errno.ENOENT:
290 raise
290 raise
291 return records
291 return records
292
292
293 @util.propertycache
293 @util.propertycache
294 def mergedriver(self):
294 def mergedriver(self):
295 # protect against the following:
295 # protect against the following:
296 # - A configures a malicious merge driver in their hgrc, then
296 # - A configures a malicious merge driver in their hgrc, then
297 # pauses the merge
297 # pauses the merge
298 # - A edits their hgrc to remove references to the merge driver
298 # - A edits their hgrc to remove references to the merge driver
299 # - A gives a copy of their entire repo, including .hg, to B
299 # - A gives a copy of their entire repo, including .hg, to B
300 # - B inspects .hgrc and finds it to be clean
300 # - B inspects .hgrc and finds it to be clean
301 # - B then continues the merge and the malicious merge driver
301 # - B then continues the merge and the malicious merge driver
302 # gets invoked
302 # gets invoked
303 configmergedriver = self._repo.ui.config('experimental', 'mergedriver')
303 configmergedriver = self._repo.ui.config('experimental', 'mergedriver')
304 if (self._readmergedriver is not None
304 if (self._readmergedriver is not None
305 and self._readmergedriver != configmergedriver):
305 and self._readmergedriver != configmergedriver):
306 raise error.ConfigError(
306 raise error.ConfigError(
307 _("merge driver changed since merge started"),
307 _("merge driver changed since merge started"),
308 hint=_("revert merge driver change or abort merge"))
308 hint=_("revert merge driver change or abort merge"))
309
309
310 return configmergedriver
310 return configmergedriver
311
311
312 @util.propertycache
312 @util.propertycache
313 def localctx(self):
313 def localctx(self):
314 if self._local is None:
314 if self._local is None:
315 raise RuntimeError("localctx accessed but self._local isn't set")
315 raise RuntimeError("localctx accessed but self._local isn't set")
316 return self._repo[self._local]
316 return self._repo[self._local]
317
317
318 @util.propertycache
318 @util.propertycache
319 def otherctx(self):
319 def otherctx(self):
320 if self._other is None:
320 if self._other is None:
321 raise RuntimeError("otherctx accessed but self._other isn't set")
321 raise RuntimeError("otherctx accessed but self._other isn't set")
322 return self._repo[self._other]
322 return self._repo[self._other]
323
323
324 def active(self):
324 def active(self):
325 """Whether mergestate is active.
325 """Whether mergestate is active.
326
326
327 Returns True if there appears to be mergestate. This is a rough proxy
327 Returns True if there appears to be mergestate. This is a rough proxy
328 for "is a merge in progress."
328 for "is a merge in progress."
329 """
329 """
330 # Check local variables before looking at filesystem for performance
330 # Check local variables before looking at filesystem for performance
331 # reasons.
331 # reasons.
332 return bool(self._local) or bool(self._state) or \
332 return bool(self._local) or bool(self._state) or \
333 self._repo.vfs.exists(self.statepathv1) or \
333 self._repo.vfs.exists(self.statepathv1) or \
334 self._repo.vfs.exists(self.statepathv2)
334 self._repo.vfs.exists(self.statepathv2)
335
335
336 def commit(self):
336 def commit(self):
337 """Write current state on disk (if necessary)"""
337 """Write current state on disk (if necessary)"""
338 if self._dirty:
338 if self._dirty:
339 records = self._makerecords()
339 records = self._makerecords()
340 self._writerecords(records)
340 self._writerecords(records)
341 self._dirty = False
341 self._dirty = False
342
342
343 def _makerecords(self):
343 def _makerecords(self):
344 records = []
344 records = []
345 records.append(('L', hex(self._local)))
345 records.append(('L', hex(self._local)))
346 records.append(('O', hex(self._other)))
346 records.append(('O', hex(self._other)))
347 if self.mergedriver:
347 if self.mergedriver:
348 records.append(('m', '\0'.join([
348 records.append(('m', '\0'.join([
349 self.mergedriver, self._mdstate])))
349 self.mergedriver, self._mdstate])))
350 for d, v in self._state.iteritems():
350 for d, v in self._state.iteritems():
351 if v[0] == 'd':
351 if v[0] == 'd':
352 records.append(('D', '\0'.join([d] + v)))
352 records.append(('D', '\0'.join([d] + v)))
353 # v[1] == local ('cd'), v[6] == other ('dc') -- not supported by
353 # v[1] == local ('cd'), v[6] == other ('dc') -- not supported by
354 # older versions of Mercurial
354 # older versions of Mercurial
355 elif v[1] == nullhex or v[6] == nullhex:
355 elif v[1] == nullhex or v[6] == nullhex:
356 records.append(('C', '\0'.join([d] + v)))
356 records.append(('C', '\0'.join([d] + v)))
357 else:
357 else:
358 records.append(('F', '\0'.join([d] + v)))
358 records.append(('F', '\0'.join([d] + v)))
359 for filename, extras in sorted(self._stateextras.iteritems()):
359 for filename, extras in sorted(self._stateextras.iteritems()):
360 rawextras = '\0'.join('%s\0%s' % (k, v) for k, v in
360 rawextras = '\0'.join('%s\0%s' % (k, v) for k, v in
361 extras.iteritems())
361 extras.iteritems())
362 records.append(('f', '%s\0%s' % (filename, rawextras)))
362 records.append(('f', '%s\0%s' % (filename, rawextras)))
363 if self._labels is not None:
363 if self._labels is not None:
364 labels = '\0'.join(self._labels)
364 labels = '\0'.join(self._labels)
365 records.append(('l', labels))
365 records.append(('l', labels))
366 return records
366 return records
367
367
368 def _writerecords(self, records):
368 def _writerecords(self, records):
369 """Write current state on disk (both v1 and v2)"""
369 """Write current state on disk (both v1 and v2)"""
370 self._writerecordsv1(records)
370 self._writerecordsv1(records)
371 self._writerecordsv2(records)
371 self._writerecordsv2(records)
372
372
373 def _writerecordsv1(self, records):
373 def _writerecordsv1(self, records):
374 """Write current state on disk in a version 1 file"""
374 """Write current state on disk in a version 1 file"""
375 f = self._repo.vfs(self.statepathv1, 'w')
375 f = self._repo.vfs(self.statepathv1, 'w')
376 irecords = iter(records)
376 irecords = iter(records)
377 lrecords = next(irecords)
377 lrecords = next(irecords)
378 assert lrecords[0] == 'L'
378 assert lrecords[0] == 'L'
379 f.write(hex(self._local) + '\n')
379 f.write(hex(self._local) + '\n')
380 for rtype, data in irecords:
380 for rtype, data in irecords:
381 if rtype == 'F':
381 if rtype == 'F':
382 f.write('%s\n' % _droponode(data))
382 f.write('%s\n' % _droponode(data))
383 f.close()
383 f.close()
384
384
385 def _writerecordsv2(self, records):
385 def _writerecordsv2(self, records):
386 """Write current state on disk in a version 2 file
386 """Write current state on disk in a version 2 file
387
387
388 See the docstring for _readrecordsv2 for why we use 't'."""
388 See the docstring for _readrecordsv2 for why we use 't'."""
389 # these are the records that all version 2 clients can read
389 # these are the records that all version 2 clients can read
390 whitelist = 'LOF'
390 whitelist = 'LOF'
391 f = self._repo.vfs(self.statepathv2, 'w')
391 f = self._repo.vfs(self.statepathv2, 'w')
392 for key, data in records:
392 for key, data in records:
393 assert len(key) == 1
393 assert len(key) == 1
394 if key not in whitelist:
394 if key not in whitelist:
395 key, data = 't', '%s%s' % (key, data)
395 key, data = 't', '%s%s' % (key, data)
396 format = '>sI%is' % len(data)
396 format = '>sI%is' % len(data)
397 f.write(_pack(format, key, len(data), data))
397 f.write(_pack(format, key, len(data), data))
398 f.close()
398 f.close()
399
399
400 def add(self, fcl, fco, fca, fd):
400 def add(self, fcl, fco, fca, fd):
401 """add a new (potentially?) conflicting file the merge state
401 """add a new (potentially?) conflicting file the merge state
402 fcl: file context for local,
402 fcl: file context for local,
403 fco: file context for remote,
403 fco: file context for remote,
404 fca: file context for ancestors,
404 fca: file context for ancestors,
405 fd: file path of the resulting merge.
405 fd: file path of the resulting merge.
406
406
407 note: also write the local version to the `.hg/merge` directory.
407 note: also write the local version to the `.hg/merge` directory.
408 """
408 """
409 if fcl.isabsent():
409 if fcl.isabsent():
410 hash = nullhex
410 hash = nullhex
411 else:
411 else:
412 hash = hashlib.sha1(fcl.path()).hexdigest()
412 hash = hashlib.sha1(fcl.path()).hexdigest()
413 self._repo.vfs.write('merge/' + hash, fcl.data())
413 self._repo.vfs.write('merge/' + hash, fcl.data())
414 self._state[fd] = ['u', hash, fcl.path(),
414 self._state[fd] = ['u', hash, fcl.path(),
415 fca.path(), hex(fca.filenode()),
415 fca.path(), hex(fca.filenode()),
416 fco.path(), hex(fco.filenode()),
416 fco.path(), hex(fco.filenode()),
417 fcl.flags()]
417 fcl.flags()]
418 self._stateextras[fd] = { 'ancestorlinknode' : hex(fca.node()) }
418 self._stateextras[fd] = { 'ancestorlinknode' : hex(fca.node()) }
419 self._dirty = True
419 self._dirty = True
420
420
421 def __contains__(self, dfile):
421 def __contains__(self, dfile):
422 return dfile in self._state
422 return dfile in self._state
423
423
424 def __getitem__(self, dfile):
424 def __getitem__(self, dfile):
425 return self._state[dfile][0]
425 return self._state[dfile][0]
426
426
427 def __iter__(self):
427 def __iter__(self):
428 return iter(sorted(self._state))
428 return iter(sorted(self._state))
429
429
430 def files(self):
430 def files(self):
431 return self._state.keys()
431 return self._state.keys()
432
432
433 def mark(self, dfile, state):
433 def mark(self, dfile, state):
434 self._state[dfile][0] = state
434 self._state[dfile][0] = state
435 self._dirty = True
435 self._dirty = True
436
436
437 def mdstate(self):
437 def mdstate(self):
438 return self._mdstate
438 return self._mdstate
439
439
440 def unresolved(self):
440 def unresolved(self):
441 """Obtain the paths of unresolved files."""
441 """Obtain the paths of unresolved files."""
442
442
443 for f, entry in self._state.items():
443 for f, entry in self._state.items():
444 if entry[0] == 'u':
444 if entry[0] == 'u':
445 yield f
445 yield f
446
446
447 def driverresolved(self):
447 def driverresolved(self):
448 """Obtain the paths of driver-resolved files."""
448 """Obtain the paths of driver-resolved files."""
449
449
450 for f, entry in self._state.items():
450 for f, entry in self._state.items():
451 if entry[0] == 'd':
451 if entry[0] == 'd':
452 yield f
452 yield f
453
453
454 def extras(self, filename):
454 def extras(self, filename):
455 return self._stateextras.setdefault(filename, {})
455 return self._stateextras.setdefault(filename, {})
456
456
457 def _resolve(self, preresolve, dfile, wctx):
457 def _resolve(self, preresolve, dfile, wctx):
458 """rerun merge process for file path `dfile`"""
458 """rerun merge process for file path `dfile`"""
459 if self[dfile] in 'rd':
459 if self[dfile] in 'rd':
460 return True, 0
460 return True, 0
461 stateentry = self._state[dfile]
461 stateentry = self._state[dfile]
462 state, hash, lfile, afile, anode, ofile, onode, flags = stateentry
462 state, hash, lfile, afile, anode, ofile, onode, flags = stateentry
463 octx = self._repo[self._other]
463 octx = self._repo[self._other]
464 extras = self.extras(dfile)
464 extras = self.extras(dfile)
465 anccommitnode = extras.get('ancestorlinknode')
465 anccommitnode = extras.get('ancestorlinknode')
466 if anccommitnode:
466 if anccommitnode:
467 actx = self._repo[anccommitnode]
467 actx = self._repo[anccommitnode]
468 else:
468 else:
469 actx = None
469 actx = None
470 fcd = self._filectxorabsent(hash, wctx, dfile)
470 fcd = self._filectxorabsent(hash, wctx, dfile)
471 fco = self._filectxorabsent(onode, octx, ofile)
471 fco = self._filectxorabsent(onode, octx, ofile)
472 # TODO: move this to filectxorabsent
472 # TODO: move this to filectxorabsent
473 fca = self._repo.filectx(afile, fileid=anode, changeid=actx)
473 fca = self._repo.filectx(afile, fileid=anode, changeid=actx)
474 # "premerge" x flags
474 # "premerge" x flags
475 flo = fco.flags()
475 flo = fco.flags()
476 fla = fca.flags()
476 fla = fca.flags()
477 if 'x' in flags + flo + fla and 'l' not in flags + flo + fla:
477 if 'x' in flags + flo + fla and 'l' not in flags + flo + fla:
478 if fca.node() == nullid:
478 if fca.node() == nullid and flags != flo:
479 if preresolve:
479 if preresolve:
480 self._repo.ui.warn(
480 self._repo.ui.warn(
481 _('warning: cannot merge flags for %s\n') % afile)
481 _('warning: cannot merge flags for %s\n') % afile)
482 elif flags == fla:
482 elif flags == fla:
483 flags = flo
483 flags = flo
484 if preresolve:
484 if preresolve:
485 # restore local
485 # restore local
486 if hash != nullhex:
486 if hash != nullhex:
487 f = self._repo.vfs('merge/' + hash)
487 f = self._repo.vfs('merge/' + hash)
488 self._repo.wwrite(dfile, f.read(), flags)
488 self._repo.wwrite(dfile, f.read(), flags)
489 f.close()
489 f.close()
490 else:
490 else:
491 self._repo.wvfs.unlinkpath(dfile, ignoremissing=True)
491 self._repo.wvfs.unlinkpath(dfile, ignoremissing=True)
492 complete, r, deleted = filemerge.premerge(self._repo, self._local,
492 complete, r, deleted = filemerge.premerge(self._repo, self._local,
493 lfile, fcd, fco, fca,
493 lfile, fcd, fco, fca,
494 labels=self._labels)
494 labels=self._labels)
495 else:
495 else:
496 complete, r, deleted = filemerge.filemerge(self._repo, self._local,
496 complete, r, deleted = filemerge.filemerge(self._repo, self._local,
497 lfile, fcd, fco, fca,
497 lfile, fcd, fco, fca,
498 labels=self._labels)
498 labels=self._labels)
499 if r is None:
499 if r is None:
500 # no real conflict
500 # no real conflict
501 del self._state[dfile]
501 del self._state[dfile]
502 self._stateextras.pop(dfile, None)
502 self._stateextras.pop(dfile, None)
503 self._dirty = True
503 self._dirty = True
504 elif not r:
504 elif not r:
505 self.mark(dfile, 'r')
505 self.mark(dfile, 'r')
506
506
507 if complete:
507 if complete:
508 action = None
508 action = None
509 if deleted:
509 if deleted:
510 if fcd.isabsent():
510 if fcd.isabsent():
511 # dc: local picked. Need to drop if present, which may
511 # dc: local picked. Need to drop if present, which may
512 # happen on re-resolves.
512 # happen on re-resolves.
513 action = 'f'
513 action = 'f'
514 else:
514 else:
515 # cd: remote picked (or otherwise deleted)
515 # cd: remote picked (or otherwise deleted)
516 action = 'r'
516 action = 'r'
517 else:
517 else:
518 if fcd.isabsent(): # dc: remote picked
518 if fcd.isabsent(): # dc: remote picked
519 action = 'g'
519 action = 'g'
520 elif fco.isabsent(): # cd: local picked
520 elif fco.isabsent(): # cd: local picked
521 if dfile in self.localctx:
521 if dfile in self.localctx:
522 action = 'am'
522 action = 'am'
523 else:
523 else:
524 action = 'a'
524 action = 'a'
525 # else: regular merges (no action necessary)
525 # else: regular merges (no action necessary)
526 self._results[dfile] = r, action
526 self._results[dfile] = r, action
527
527
528 return complete, r
528 return complete, r
529
529
530 def _filectxorabsent(self, hexnode, ctx, f):
530 def _filectxorabsent(self, hexnode, ctx, f):
531 if hexnode == nullhex:
531 if hexnode == nullhex:
532 return filemerge.absentfilectx(ctx, f)
532 return filemerge.absentfilectx(ctx, f)
533 else:
533 else:
534 return ctx[f]
534 return ctx[f]
535
535
536 def preresolve(self, dfile, wctx):
536 def preresolve(self, dfile, wctx):
537 """run premerge process for dfile
537 """run premerge process for dfile
538
538
539 Returns whether the merge is complete, and the exit code."""
539 Returns whether the merge is complete, and the exit code."""
540 return self._resolve(True, dfile, wctx)
540 return self._resolve(True, dfile, wctx)
541
541
542 def resolve(self, dfile, wctx):
542 def resolve(self, dfile, wctx):
543 """run merge process (assuming premerge was run) for dfile
543 """run merge process (assuming premerge was run) for dfile
544
544
545 Returns the exit code of the merge."""
545 Returns the exit code of the merge."""
546 return self._resolve(False, dfile, wctx)[1]
546 return self._resolve(False, dfile, wctx)[1]
547
547
548 def counts(self):
548 def counts(self):
549 """return counts for updated, merged and removed files in this
549 """return counts for updated, merged and removed files in this
550 session"""
550 session"""
551 updated, merged, removed = 0, 0, 0
551 updated, merged, removed = 0, 0, 0
552 for r, action in self._results.itervalues():
552 for r, action in self._results.itervalues():
553 if r is None:
553 if r is None:
554 updated += 1
554 updated += 1
555 elif r == 0:
555 elif r == 0:
556 if action == 'r':
556 if action == 'r':
557 removed += 1
557 removed += 1
558 else:
558 else:
559 merged += 1
559 merged += 1
560 return updated, merged, removed
560 return updated, merged, removed
561
561
562 def unresolvedcount(self):
562 def unresolvedcount(self):
563 """get unresolved count for this merge (persistent)"""
563 """get unresolved count for this merge (persistent)"""
564 return len([True for f, entry in self._state.iteritems()
564 return len([True for f, entry in self._state.iteritems()
565 if entry[0] == 'u'])
565 if entry[0] == 'u'])
566
566
567 def actions(self):
567 def actions(self):
568 """return lists of actions to perform on the dirstate"""
568 """return lists of actions to perform on the dirstate"""
569 actions = {'r': [], 'f': [], 'a': [], 'am': [], 'g': []}
569 actions = {'r': [], 'f': [], 'a': [], 'am': [], 'g': []}
570 for f, (r, action) in self._results.iteritems():
570 for f, (r, action) in self._results.iteritems():
571 if action is not None:
571 if action is not None:
572 actions[action].append((f, None, "merge result"))
572 actions[action].append((f, None, "merge result"))
573 return actions
573 return actions
574
574
575 def recordactions(self):
575 def recordactions(self):
576 """record remove/add/get actions in the dirstate"""
576 """record remove/add/get actions in the dirstate"""
577 branchmerge = self._repo.dirstate.p2() != nullid
577 branchmerge = self._repo.dirstate.p2() != nullid
578 recordupdates(self._repo, self.actions(), branchmerge)
578 recordupdates(self._repo, self.actions(), branchmerge)
579
579
580 def queueremove(self, f):
580 def queueremove(self, f):
581 """queues a file to be removed from the dirstate
581 """queues a file to be removed from the dirstate
582
582
583 Meant for use by custom merge drivers."""
583 Meant for use by custom merge drivers."""
584 self._results[f] = 0, 'r'
584 self._results[f] = 0, 'r'
585
585
586 def queueadd(self, f):
586 def queueadd(self, f):
587 """queues a file to be added to the dirstate
587 """queues a file to be added to the dirstate
588
588
589 Meant for use by custom merge drivers."""
589 Meant for use by custom merge drivers."""
590 self._results[f] = 0, 'a'
590 self._results[f] = 0, 'a'
591
591
592 def queueget(self, f):
592 def queueget(self, f):
593 """queues a file to be marked modified in the dirstate
593 """queues a file to be marked modified in the dirstate
594
594
595 Meant for use by custom merge drivers."""
595 Meant for use by custom merge drivers."""
596 self._results[f] = 0, 'g'
596 self._results[f] = 0, 'g'
597
597
598 def _getcheckunknownconfig(repo, section, name):
598 def _getcheckunknownconfig(repo, section, name):
599 config = repo.ui.config(section, name, default='abort')
599 config = repo.ui.config(section, name, default='abort')
600 valid = ['abort', 'ignore', 'warn']
600 valid = ['abort', 'ignore', 'warn']
601 if config not in valid:
601 if config not in valid:
602 validstr = ', '.join(["'" + v + "'" for v in valid])
602 validstr = ', '.join(["'" + v + "'" for v in valid])
603 raise error.ConfigError(_("%s.%s not valid "
603 raise error.ConfigError(_("%s.%s not valid "
604 "('%s' is none of %s)")
604 "('%s' is none of %s)")
605 % (section, name, config, validstr))
605 % (section, name, config, validstr))
606 return config
606 return config
607
607
608 def _checkunknownfile(repo, wctx, mctx, f, f2=None):
608 def _checkunknownfile(repo, wctx, mctx, f, f2=None):
609 if f2 is None:
609 if f2 is None:
610 f2 = f
610 f2 = f
611 return (repo.wvfs.audit.check(f)
611 return (repo.wvfs.audit.check(f)
612 and repo.wvfs.isfileorlink(f)
612 and repo.wvfs.isfileorlink(f)
613 and repo.dirstate.normalize(f) not in repo.dirstate
613 and repo.dirstate.normalize(f) not in repo.dirstate
614 and mctx[f2].cmp(wctx[f]))
614 and mctx[f2].cmp(wctx[f]))
615
615
616 def _checkunknownfiles(repo, wctx, mctx, force, actions, mergeforce):
616 def _checkunknownfiles(repo, wctx, mctx, force, actions, mergeforce):
617 """
617 """
618 Considers any actions that care about the presence of conflicting unknown
618 Considers any actions that care about the presence of conflicting unknown
619 files. For some actions, the result is to abort; for others, it is to
619 files. For some actions, the result is to abort; for others, it is to
620 choose a different action.
620 choose a different action.
621 """
621 """
622 conflicts = set()
622 conflicts = set()
623 warnconflicts = set()
623 warnconflicts = set()
624 abortconflicts = set()
624 abortconflicts = set()
625 unknownconfig = _getcheckunknownconfig(repo, 'merge', 'checkunknown')
625 unknownconfig = _getcheckunknownconfig(repo, 'merge', 'checkunknown')
626 ignoredconfig = _getcheckunknownconfig(repo, 'merge', 'checkignored')
626 ignoredconfig = _getcheckunknownconfig(repo, 'merge', 'checkignored')
627 if not force:
627 if not force:
628 def collectconflicts(conflicts, config):
628 def collectconflicts(conflicts, config):
629 if config == 'abort':
629 if config == 'abort':
630 abortconflicts.update(conflicts)
630 abortconflicts.update(conflicts)
631 elif config == 'warn':
631 elif config == 'warn':
632 warnconflicts.update(conflicts)
632 warnconflicts.update(conflicts)
633
633
634 for f, (m, args, msg) in actions.iteritems():
634 for f, (m, args, msg) in actions.iteritems():
635 if m in ('c', 'dc'):
635 if m in ('c', 'dc'):
636 if _checkunknownfile(repo, wctx, mctx, f):
636 if _checkunknownfile(repo, wctx, mctx, f):
637 conflicts.add(f)
637 conflicts.add(f)
638 elif m == 'dg':
638 elif m == 'dg':
639 if _checkunknownfile(repo, wctx, mctx, f, args[0]):
639 if _checkunknownfile(repo, wctx, mctx, f, args[0]):
640 conflicts.add(f)
640 conflicts.add(f)
641
641
642 ignoredconflicts = set([c for c in conflicts
642 ignoredconflicts = set([c for c in conflicts
643 if repo.dirstate._ignore(c)])
643 if repo.dirstate._ignore(c)])
644 unknownconflicts = conflicts - ignoredconflicts
644 unknownconflicts = conflicts - ignoredconflicts
645 collectconflicts(ignoredconflicts, ignoredconfig)
645 collectconflicts(ignoredconflicts, ignoredconfig)
646 collectconflicts(unknownconflicts, unknownconfig)
646 collectconflicts(unknownconflicts, unknownconfig)
647 else:
647 else:
648 for f, (m, args, msg) in actions.iteritems():
648 for f, (m, args, msg) in actions.iteritems():
649 if m == 'cm':
649 if m == 'cm':
650 fl2, anc = args
650 fl2, anc = args
651 different = _checkunknownfile(repo, wctx, mctx, f)
651 different = _checkunknownfile(repo, wctx, mctx, f)
652 if repo.dirstate._ignore(f):
652 if repo.dirstate._ignore(f):
653 config = ignoredconfig
653 config = ignoredconfig
654 else:
654 else:
655 config = unknownconfig
655 config = unknownconfig
656
656
657 # The behavior when force is True is described by this table:
657 # The behavior when force is True is described by this table:
658 # config different mergeforce | action backup
658 # config different mergeforce | action backup
659 # * n * | get n
659 # * n * | get n
660 # * y y | merge -
660 # * y y | merge -
661 # abort y n | merge - (1)
661 # abort y n | merge - (1)
662 # warn y n | warn + get y
662 # warn y n | warn + get y
663 # ignore y n | get y
663 # ignore y n | get y
664 #
664 #
665 # (1) this is probably the wrong behavior here -- we should
665 # (1) this is probably the wrong behavior here -- we should
666 # probably abort, but some actions like rebases currently
666 # probably abort, but some actions like rebases currently
667 # don't like an abort happening in the middle of
667 # don't like an abort happening in the middle of
668 # merge.update.
668 # merge.update.
669 if not different:
669 if not different:
670 actions[f] = ('g', (fl2, False), "remote created")
670 actions[f] = ('g', (fl2, False), "remote created")
671 elif mergeforce or config == 'abort':
671 elif mergeforce or config == 'abort':
672 actions[f] = ('m', (f, f, None, False, anc),
672 actions[f] = ('m', (f, f, None, False, anc),
673 "remote differs from untracked local")
673 "remote differs from untracked local")
674 elif config == 'abort':
674 elif config == 'abort':
675 abortconflicts.add(f)
675 abortconflicts.add(f)
676 else:
676 else:
677 if config == 'warn':
677 if config == 'warn':
678 warnconflicts.add(f)
678 warnconflicts.add(f)
679 actions[f] = ('g', (fl2, True), "remote created")
679 actions[f] = ('g', (fl2, True), "remote created")
680
680
681 for f in sorted(abortconflicts):
681 for f in sorted(abortconflicts):
682 repo.ui.warn(_("%s: untracked file differs\n") % f)
682 repo.ui.warn(_("%s: untracked file differs\n") % f)
683 if abortconflicts:
683 if abortconflicts:
684 raise error.Abort(_("untracked files in working directory "
684 raise error.Abort(_("untracked files in working directory "
685 "differ from files in requested revision"))
685 "differ from files in requested revision"))
686
686
687 for f in sorted(warnconflicts):
687 for f in sorted(warnconflicts):
688 repo.ui.warn(_("%s: replacing untracked file\n") % f)
688 repo.ui.warn(_("%s: replacing untracked file\n") % f)
689
689
690 for f, (m, args, msg) in actions.iteritems():
690 for f, (m, args, msg) in actions.iteritems():
691 backup = f in conflicts
691 backup = f in conflicts
692 if m == 'c':
692 if m == 'c':
693 flags, = args
693 flags, = args
694 actions[f] = ('g', (flags, backup), msg)
694 actions[f] = ('g', (flags, backup), msg)
695
695
696 def _forgetremoved(wctx, mctx, branchmerge):
696 def _forgetremoved(wctx, mctx, branchmerge):
697 """
697 """
698 Forget removed files
698 Forget removed files
699
699
700 If we're jumping between revisions (as opposed to merging), and if
700 If we're jumping between revisions (as opposed to merging), and if
701 neither the working directory nor the target rev has the file,
701 neither the working directory nor the target rev has the file,
702 then we need to remove it from the dirstate, to prevent the
702 then we need to remove it from the dirstate, to prevent the
703 dirstate from listing the file when it is no longer in the
703 dirstate from listing the file when it is no longer in the
704 manifest.
704 manifest.
705
705
706 If we're merging, and the other revision has removed a file
706 If we're merging, and the other revision has removed a file
707 that is not present in the working directory, we need to mark it
707 that is not present in the working directory, we need to mark it
708 as removed.
708 as removed.
709 """
709 """
710
710
711 actions = {}
711 actions = {}
712 m = 'f'
712 m = 'f'
713 if branchmerge:
713 if branchmerge:
714 m = 'r'
714 m = 'r'
715 for f in wctx.deleted():
715 for f in wctx.deleted():
716 if f not in mctx:
716 if f not in mctx:
717 actions[f] = m, None, "forget deleted"
717 actions[f] = m, None, "forget deleted"
718
718
719 if not branchmerge:
719 if not branchmerge:
720 for f in wctx.removed():
720 for f in wctx.removed():
721 if f not in mctx:
721 if f not in mctx:
722 actions[f] = 'f', None, "forget removed"
722 actions[f] = 'f', None, "forget removed"
723
723
724 return actions
724 return actions
725
725
726 def _checkcollision(repo, wmf, actions):
726 def _checkcollision(repo, wmf, actions):
727 # build provisional merged manifest up
727 # build provisional merged manifest up
728 pmmf = set(wmf)
728 pmmf = set(wmf)
729
729
730 if actions:
730 if actions:
731 # k, dr, e and rd are no-op
731 # k, dr, e and rd are no-op
732 for m in 'a', 'am', 'f', 'g', 'cd', 'dc':
732 for m in 'a', 'am', 'f', 'g', 'cd', 'dc':
733 for f, args, msg in actions[m]:
733 for f, args, msg in actions[m]:
734 pmmf.add(f)
734 pmmf.add(f)
735 for f, args, msg in actions['r']:
735 for f, args, msg in actions['r']:
736 pmmf.discard(f)
736 pmmf.discard(f)
737 for f, args, msg in actions['dm']:
737 for f, args, msg in actions['dm']:
738 f2, flags = args
738 f2, flags = args
739 pmmf.discard(f2)
739 pmmf.discard(f2)
740 pmmf.add(f)
740 pmmf.add(f)
741 for f, args, msg in actions['dg']:
741 for f, args, msg in actions['dg']:
742 pmmf.add(f)
742 pmmf.add(f)
743 for f, args, msg in actions['m']:
743 for f, args, msg in actions['m']:
744 f1, f2, fa, move, anc = args
744 f1, f2, fa, move, anc = args
745 if move:
745 if move:
746 pmmf.discard(f1)
746 pmmf.discard(f1)
747 pmmf.add(f)
747 pmmf.add(f)
748
748
749 # check case-folding collision in provisional merged manifest
749 # check case-folding collision in provisional merged manifest
750 foldmap = {}
750 foldmap = {}
751 for f in sorted(pmmf):
751 for f in sorted(pmmf):
752 fold = util.normcase(f)
752 fold = util.normcase(f)
753 if fold in foldmap:
753 if fold in foldmap:
754 raise error.Abort(_("case-folding collision between %s and %s")
754 raise error.Abort(_("case-folding collision between %s and %s")
755 % (f, foldmap[fold]))
755 % (f, foldmap[fold]))
756 foldmap[fold] = f
756 foldmap[fold] = f
757
757
758 # check case-folding of directories
758 # check case-folding of directories
759 foldprefix = unfoldprefix = lastfull = ''
759 foldprefix = unfoldprefix = lastfull = ''
760 for fold, f in sorted(foldmap.items()):
760 for fold, f in sorted(foldmap.items()):
761 if fold.startswith(foldprefix) and not f.startswith(unfoldprefix):
761 if fold.startswith(foldprefix) and not f.startswith(unfoldprefix):
762 # the folded prefix matches but actual casing is different
762 # the folded prefix matches but actual casing is different
763 raise error.Abort(_("case-folding collision between "
763 raise error.Abort(_("case-folding collision between "
764 "%s and directory of %s") % (lastfull, f))
764 "%s and directory of %s") % (lastfull, f))
765 foldprefix = fold + '/'
765 foldprefix = fold + '/'
766 unfoldprefix = f + '/'
766 unfoldprefix = f + '/'
767 lastfull = f
767 lastfull = f
768
768
769 def driverpreprocess(repo, ms, wctx, labels=None):
769 def driverpreprocess(repo, ms, wctx, labels=None):
770 """run the preprocess step of the merge driver, if any
770 """run the preprocess step of the merge driver, if any
771
771
772 This is currently not implemented -- it's an extension point."""
772 This is currently not implemented -- it's an extension point."""
773 return True
773 return True
774
774
775 def driverconclude(repo, ms, wctx, labels=None):
775 def driverconclude(repo, ms, wctx, labels=None):
776 """run the conclude step of the merge driver, if any
776 """run the conclude step of the merge driver, if any
777
777
778 This is currently not implemented -- it's an extension point."""
778 This is currently not implemented -- it's an extension point."""
779 return True
779 return True
780
780
781 def manifestmerge(repo, wctx, p2, pa, branchmerge, force, matcher,
781 def manifestmerge(repo, wctx, p2, pa, branchmerge, force, matcher,
782 acceptremote, followcopies):
782 acceptremote, followcopies):
783 """
783 """
784 Merge wctx and p2 with ancestor pa and generate merge action list
784 Merge wctx and p2 with ancestor pa and generate merge action list
785
785
786 branchmerge and force are as passed in to update
786 branchmerge and force are as passed in to update
787 matcher = matcher to filter file lists
787 matcher = matcher to filter file lists
788 acceptremote = accept the incoming changes without prompting
788 acceptremote = accept the incoming changes without prompting
789 """
789 """
790 if matcher is not None and matcher.always():
790 if matcher is not None and matcher.always():
791 matcher = None
791 matcher = None
792
792
793 copy, movewithdir, diverge, renamedelete = {}, {}, {}, {}
793 copy, movewithdir, diverge, renamedelete = {}, {}, {}, {}
794
794
795 # manifests fetched in order are going to be faster, so prime the caches
795 # manifests fetched in order are going to be faster, so prime the caches
796 [x.manifest() for x in
796 [x.manifest() for x in
797 sorted(wctx.parents() + [p2, pa], key=lambda x: x.rev())]
797 sorted(wctx.parents() + [p2, pa], key=lambda x: x.rev())]
798
798
799 if followcopies:
799 if followcopies:
800 ret = copies.mergecopies(repo, wctx, p2, pa)
800 ret = copies.mergecopies(repo, wctx, p2, pa)
801 copy, movewithdir, diverge, renamedelete = ret
801 copy, movewithdir, diverge, renamedelete = ret
802
802
803 repo.ui.note(_("resolving manifests\n"))
803 repo.ui.note(_("resolving manifests\n"))
804 repo.ui.debug(" branchmerge: %s, force: %s, partial: %s\n"
804 repo.ui.debug(" branchmerge: %s, force: %s, partial: %s\n"
805 % (bool(branchmerge), bool(force), bool(matcher)))
805 % (bool(branchmerge), bool(force), bool(matcher)))
806 repo.ui.debug(" ancestor: %s, local: %s, remote: %s\n" % (pa, wctx, p2))
806 repo.ui.debug(" ancestor: %s, local: %s, remote: %s\n" % (pa, wctx, p2))
807
807
808 m1, m2, ma = wctx.manifest(), p2.manifest(), pa.manifest()
808 m1, m2, ma = wctx.manifest(), p2.manifest(), pa.manifest()
809 copied = set(copy.values())
809 copied = set(copy.values())
810 copied.update(movewithdir.values())
810 copied.update(movewithdir.values())
811
811
812 if '.hgsubstate' in m1:
812 if '.hgsubstate' in m1:
813 # check whether sub state is modified
813 # check whether sub state is modified
814 if any(wctx.sub(s).dirty() for s in wctx.substate):
814 if any(wctx.sub(s).dirty() for s in wctx.substate):
815 m1['.hgsubstate'] += '+'
815 m1['.hgsubstate'] += '+'
816
816
817 # Compare manifests
817 # Compare manifests
818 if matcher is not None:
818 if matcher is not None:
819 m1 = m1.matches(matcher)
819 m1 = m1.matches(matcher)
820 m2 = m2.matches(matcher)
820 m2 = m2.matches(matcher)
821 diff = m1.diff(m2)
821 diff = m1.diff(m2)
822
822
823 actions = {}
823 actions = {}
824 for f, ((n1, fl1), (n2, fl2)) in diff.iteritems():
824 for f, ((n1, fl1), (n2, fl2)) in diff.iteritems():
825 if n1 and n2: # file exists on both local and remote side
825 if n1 and n2: # file exists on both local and remote side
826 if f not in ma:
826 if f not in ma:
827 fa = copy.get(f, None)
827 fa = copy.get(f, None)
828 if fa is not None:
828 if fa is not None:
829 actions[f] = ('m', (f, f, fa, False, pa.node()),
829 actions[f] = ('m', (f, f, fa, False, pa.node()),
830 "both renamed from " + fa)
830 "both renamed from " + fa)
831 else:
831 else:
832 actions[f] = ('m', (f, f, None, False, pa.node()),
832 actions[f] = ('m', (f, f, None, False, pa.node()),
833 "both created")
833 "both created")
834 else:
834 else:
835 a = ma[f]
835 a = ma[f]
836 fla = ma.flags(f)
836 fla = ma.flags(f)
837 nol = 'l' not in fl1 + fl2 + fla
837 nol = 'l' not in fl1 + fl2 + fla
838 if n2 == a and fl2 == fla:
838 if n2 == a and fl2 == fla:
839 actions[f] = ('k' , (), "remote unchanged")
839 actions[f] = ('k' , (), "remote unchanged")
840 elif n1 == a and fl1 == fla: # local unchanged - use remote
840 elif n1 == a and fl1 == fla: # local unchanged - use remote
841 if n1 == n2: # optimization: keep local content
841 if n1 == n2: # optimization: keep local content
842 actions[f] = ('e', (fl2,), "update permissions")
842 actions[f] = ('e', (fl2,), "update permissions")
843 else:
843 else:
844 actions[f] = ('g', (fl2, False), "remote is newer")
844 actions[f] = ('g', (fl2, False), "remote is newer")
845 elif nol and n2 == a: # remote only changed 'x'
845 elif nol and n2 == a: # remote only changed 'x'
846 actions[f] = ('e', (fl2,), "update permissions")
846 actions[f] = ('e', (fl2,), "update permissions")
847 elif nol and n1 == a: # local only changed 'x'
847 elif nol and n1 == a: # local only changed 'x'
848 actions[f] = ('g', (fl1, False), "remote is newer")
848 actions[f] = ('g', (fl1, False), "remote is newer")
849 else: # both changed something
849 else: # both changed something
850 actions[f] = ('m', (f, f, f, False, pa.node()),
850 actions[f] = ('m', (f, f, f, False, pa.node()),
851 "versions differ")
851 "versions differ")
852 elif n1: # file exists only on local side
852 elif n1: # file exists only on local side
853 if f in copied:
853 if f in copied:
854 pass # we'll deal with it on m2 side
854 pass # we'll deal with it on m2 side
855 elif f in movewithdir: # directory rename, move local
855 elif f in movewithdir: # directory rename, move local
856 f2 = movewithdir[f]
856 f2 = movewithdir[f]
857 if f2 in m2:
857 if f2 in m2:
858 actions[f2] = ('m', (f, f2, None, True, pa.node()),
858 actions[f2] = ('m', (f, f2, None, True, pa.node()),
859 "remote directory rename, both created")
859 "remote directory rename, both created")
860 else:
860 else:
861 actions[f2] = ('dm', (f, fl1),
861 actions[f2] = ('dm', (f, fl1),
862 "remote directory rename - move from " + f)
862 "remote directory rename - move from " + f)
863 elif f in copy:
863 elif f in copy:
864 f2 = copy[f]
864 f2 = copy[f]
865 actions[f] = ('m', (f, f2, f2, False, pa.node()),
865 actions[f] = ('m', (f, f2, f2, False, pa.node()),
866 "local copied/moved from " + f2)
866 "local copied/moved from " + f2)
867 elif f in ma: # clean, a different, no remote
867 elif f in ma: # clean, a different, no remote
868 if n1 != ma[f]:
868 if n1 != ma[f]:
869 if acceptremote:
869 if acceptremote:
870 actions[f] = ('r', None, "remote delete")
870 actions[f] = ('r', None, "remote delete")
871 else:
871 else:
872 actions[f] = ('cd', (f, None, f, False, pa.node()),
872 actions[f] = ('cd', (f, None, f, False, pa.node()),
873 "prompt changed/deleted")
873 "prompt changed/deleted")
874 elif n1[20:] == 'a':
874 elif n1[20:] == 'a':
875 # This extra 'a' is added by working copy manifest to mark
875 # This extra 'a' is added by working copy manifest to mark
876 # the file as locally added. We should forget it instead of
876 # the file as locally added. We should forget it instead of
877 # deleting it.
877 # deleting it.
878 actions[f] = ('f', None, "remote deleted")
878 actions[f] = ('f', None, "remote deleted")
879 else:
879 else:
880 actions[f] = ('r', None, "other deleted")
880 actions[f] = ('r', None, "other deleted")
881 elif n2: # file exists only on remote side
881 elif n2: # file exists only on remote side
882 if f in copied:
882 if f in copied:
883 pass # we'll deal with it on m1 side
883 pass # we'll deal with it on m1 side
884 elif f in movewithdir:
884 elif f in movewithdir:
885 f2 = movewithdir[f]
885 f2 = movewithdir[f]
886 if f2 in m1:
886 if f2 in m1:
887 actions[f2] = ('m', (f2, f, None, False, pa.node()),
887 actions[f2] = ('m', (f2, f, None, False, pa.node()),
888 "local directory rename, both created")
888 "local directory rename, both created")
889 else:
889 else:
890 actions[f2] = ('dg', (f, fl2),
890 actions[f2] = ('dg', (f, fl2),
891 "local directory rename - get from " + f)
891 "local directory rename - get from " + f)
892 elif f in copy:
892 elif f in copy:
893 f2 = copy[f]
893 f2 = copy[f]
894 if f2 in m2:
894 if f2 in m2:
895 actions[f] = ('m', (f2, f, f2, False, pa.node()),
895 actions[f] = ('m', (f2, f, f2, False, pa.node()),
896 "remote copied from " + f2)
896 "remote copied from " + f2)
897 else:
897 else:
898 actions[f] = ('m', (f2, f, f2, True, pa.node()),
898 actions[f] = ('m', (f2, f, f2, True, pa.node()),
899 "remote moved from " + f2)
899 "remote moved from " + f2)
900 elif f not in ma:
900 elif f not in ma:
901 # local unknown, remote created: the logic is described by the
901 # local unknown, remote created: the logic is described by the
902 # following table:
902 # following table:
903 #
903 #
904 # force branchmerge different | action
904 # force branchmerge different | action
905 # n * * | create
905 # n * * | create
906 # y n * | create
906 # y n * | create
907 # y y n | create
907 # y y n | create
908 # y y y | merge
908 # y y y | merge
909 #
909 #
910 # Checking whether the files are different is expensive, so we
910 # Checking whether the files are different is expensive, so we
911 # don't do that when we can avoid it.
911 # don't do that when we can avoid it.
912 if not force:
912 if not force:
913 actions[f] = ('c', (fl2,), "remote created")
913 actions[f] = ('c', (fl2,), "remote created")
914 elif not branchmerge:
914 elif not branchmerge:
915 actions[f] = ('c', (fl2,), "remote created")
915 actions[f] = ('c', (fl2,), "remote created")
916 else:
916 else:
917 actions[f] = ('cm', (fl2, pa.node()),
917 actions[f] = ('cm', (fl2, pa.node()),
918 "remote created, get or merge")
918 "remote created, get or merge")
919 elif n2 != ma[f]:
919 elif n2 != ma[f]:
920 if acceptremote:
920 if acceptremote:
921 actions[f] = ('c', (fl2,), "remote recreating")
921 actions[f] = ('c', (fl2,), "remote recreating")
922 else:
922 else:
923 actions[f] = ('dc', (None, f, f, False, pa.node()),
923 actions[f] = ('dc', (None, f, f, False, pa.node()),
924 "prompt deleted/changed")
924 "prompt deleted/changed")
925
925
926 return actions, diverge, renamedelete
926 return actions, diverge, renamedelete
927
927
928 def _resolvetrivial(repo, wctx, mctx, ancestor, actions):
928 def _resolvetrivial(repo, wctx, mctx, ancestor, actions):
929 """Resolves false conflicts where the nodeid changed but the content
929 """Resolves false conflicts where the nodeid changed but the content
930 remained the same."""
930 remained the same."""
931
931
932 for f, (m, args, msg) in actions.items():
932 for f, (m, args, msg) in actions.items():
933 if m == 'cd' and f in ancestor and not wctx[f].cmp(ancestor[f]):
933 if m == 'cd' and f in ancestor and not wctx[f].cmp(ancestor[f]):
934 # local did change but ended up with same content
934 # local did change but ended up with same content
935 actions[f] = 'r', None, "prompt same"
935 actions[f] = 'r', None, "prompt same"
936 elif m == 'dc' and f in ancestor and not mctx[f].cmp(ancestor[f]):
936 elif m == 'dc' and f in ancestor and not mctx[f].cmp(ancestor[f]):
937 # remote did change but ended up with same content
937 # remote did change but ended up with same content
938 del actions[f] # don't get = keep local deleted
938 del actions[f] # don't get = keep local deleted
939
939
940 def calculateupdates(repo, wctx, mctx, ancestors, branchmerge, force,
940 def calculateupdates(repo, wctx, mctx, ancestors, branchmerge, force,
941 acceptremote, followcopies, matcher=None,
941 acceptremote, followcopies, matcher=None,
942 mergeforce=False):
942 mergeforce=False):
943 "Calculate the actions needed to merge mctx into wctx using ancestors"
943 "Calculate the actions needed to merge mctx into wctx using ancestors"
944 if len(ancestors) == 1: # default
944 if len(ancestors) == 1: # default
945 actions, diverge, renamedelete = manifestmerge(
945 actions, diverge, renamedelete = manifestmerge(
946 repo, wctx, mctx, ancestors[0], branchmerge, force, matcher,
946 repo, wctx, mctx, ancestors[0], branchmerge, force, matcher,
947 acceptremote, followcopies)
947 acceptremote, followcopies)
948 _checkunknownfiles(repo, wctx, mctx, force, actions, mergeforce)
948 _checkunknownfiles(repo, wctx, mctx, force, actions, mergeforce)
949
949
950 else: # only when merge.preferancestor=* - the default
950 else: # only when merge.preferancestor=* - the default
951 repo.ui.note(
951 repo.ui.note(
952 _("note: merging %s and %s using bids from ancestors %s\n") %
952 _("note: merging %s and %s using bids from ancestors %s\n") %
953 (wctx, mctx, _(' and ').join(str(anc) for anc in ancestors)))
953 (wctx, mctx, _(' and ').join(str(anc) for anc in ancestors)))
954
954
955 # Call for bids
955 # Call for bids
956 fbids = {} # mapping filename to bids (action method to list af actions)
956 fbids = {} # mapping filename to bids (action method to list af actions)
957 diverge, renamedelete = None, None
957 diverge, renamedelete = None, None
958 for ancestor in ancestors:
958 for ancestor in ancestors:
959 repo.ui.note(_('\ncalculating bids for ancestor %s\n') % ancestor)
959 repo.ui.note(_('\ncalculating bids for ancestor %s\n') % ancestor)
960 actions, diverge1, renamedelete1 = manifestmerge(
960 actions, diverge1, renamedelete1 = manifestmerge(
961 repo, wctx, mctx, ancestor, branchmerge, force, matcher,
961 repo, wctx, mctx, ancestor, branchmerge, force, matcher,
962 acceptremote, followcopies)
962 acceptremote, followcopies)
963 _checkunknownfiles(repo, wctx, mctx, force, actions, mergeforce)
963 _checkunknownfiles(repo, wctx, mctx, force, actions, mergeforce)
964
964
965 # Track the shortest set of warning on the theory that bid
965 # Track the shortest set of warning on the theory that bid
966 # merge will correctly incorporate more information
966 # merge will correctly incorporate more information
967 if diverge is None or len(diverge1) < len(diverge):
967 if diverge is None or len(diverge1) < len(diverge):
968 diverge = diverge1
968 diverge = diverge1
969 if renamedelete is None or len(renamedelete) < len(renamedelete1):
969 if renamedelete is None or len(renamedelete) < len(renamedelete1):
970 renamedelete = renamedelete1
970 renamedelete = renamedelete1
971
971
972 for f, a in sorted(actions.iteritems()):
972 for f, a in sorted(actions.iteritems()):
973 m, args, msg = a
973 m, args, msg = a
974 repo.ui.debug(' %s: %s -> %s\n' % (f, msg, m))
974 repo.ui.debug(' %s: %s -> %s\n' % (f, msg, m))
975 if f in fbids:
975 if f in fbids:
976 d = fbids[f]
976 d = fbids[f]
977 if m in d:
977 if m in d:
978 d[m].append(a)
978 d[m].append(a)
979 else:
979 else:
980 d[m] = [a]
980 d[m] = [a]
981 else:
981 else:
982 fbids[f] = {m: [a]}
982 fbids[f] = {m: [a]}
983
983
984 # Pick the best bid for each file
984 # Pick the best bid for each file
985 repo.ui.note(_('\nauction for merging merge bids\n'))
985 repo.ui.note(_('\nauction for merging merge bids\n'))
986 actions = {}
986 actions = {}
987 for f, bids in sorted(fbids.items()):
987 for f, bids in sorted(fbids.items()):
988 # bids is a mapping from action method to list af actions
988 # bids is a mapping from action method to list af actions
989 # Consensus?
989 # Consensus?
990 if len(bids) == 1: # all bids are the same kind of method
990 if len(bids) == 1: # all bids are the same kind of method
991 m, l = bids.items()[0]
991 m, l = bids.items()[0]
992 if all(a == l[0] for a in l[1:]): # len(bids) is > 1
992 if all(a == l[0] for a in l[1:]): # len(bids) is > 1
993 repo.ui.note(_(" %s: consensus for %s\n") % (f, m))
993 repo.ui.note(_(" %s: consensus for %s\n") % (f, m))
994 actions[f] = l[0]
994 actions[f] = l[0]
995 continue
995 continue
996 # If keep is an option, just do it.
996 # If keep is an option, just do it.
997 if 'k' in bids:
997 if 'k' in bids:
998 repo.ui.note(_(" %s: picking 'keep' action\n") % f)
998 repo.ui.note(_(" %s: picking 'keep' action\n") % f)
999 actions[f] = bids['k'][0]
999 actions[f] = bids['k'][0]
1000 continue
1000 continue
1001 # If there are gets and they all agree [how could they not?], do it.
1001 # If there are gets and they all agree [how could they not?], do it.
1002 if 'g' in bids:
1002 if 'g' in bids:
1003 ga0 = bids['g'][0]
1003 ga0 = bids['g'][0]
1004 if all(a == ga0 for a in bids['g'][1:]):
1004 if all(a == ga0 for a in bids['g'][1:]):
1005 repo.ui.note(_(" %s: picking 'get' action\n") % f)
1005 repo.ui.note(_(" %s: picking 'get' action\n") % f)
1006 actions[f] = ga0
1006 actions[f] = ga0
1007 continue
1007 continue
1008 # TODO: Consider other simple actions such as mode changes
1008 # TODO: Consider other simple actions such as mode changes
1009 # Handle inefficient democrazy.
1009 # Handle inefficient democrazy.
1010 repo.ui.note(_(' %s: multiple bids for merge action:\n') % f)
1010 repo.ui.note(_(' %s: multiple bids for merge action:\n') % f)
1011 for m, l in sorted(bids.items()):
1011 for m, l in sorted(bids.items()):
1012 for _f, args, msg in l:
1012 for _f, args, msg in l:
1013 repo.ui.note(' %s -> %s\n' % (msg, m))
1013 repo.ui.note(' %s -> %s\n' % (msg, m))
1014 # Pick random action. TODO: Instead, prompt user when resolving
1014 # Pick random action. TODO: Instead, prompt user when resolving
1015 m, l = bids.items()[0]
1015 m, l = bids.items()[0]
1016 repo.ui.warn(_(' %s: ambiguous merge - picked %s action\n') %
1016 repo.ui.warn(_(' %s: ambiguous merge - picked %s action\n') %
1017 (f, m))
1017 (f, m))
1018 actions[f] = l[0]
1018 actions[f] = l[0]
1019 continue
1019 continue
1020 repo.ui.note(_('end of auction\n\n'))
1020 repo.ui.note(_('end of auction\n\n'))
1021
1021
1022 _resolvetrivial(repo, wctx, mctx, ancestors[0], actions)
1022 _resolvetrivial(repo, wctx, mctx, ancestors[0], actions)
1023
1023
1024 if wctx.rev() is None:
1024 if wctx.rev() is None:
1025 fractions = _forgetremoved(wctx, mctx, branchmerge)
1025 fractions = _forgetremoved(wctx, mctx, branchmerge)
1026 actions.update(fractions)
1026 actions.update(fractions)
1027
1027
1028 return actions, diverge, renamedelete
1028 return actions, diverge, renamedelete
1029
1029
1030 def batchremove(repo, actions):
1030 def batchremove(repo, actions):
1031 """apply removes to the working directory
1031 """apply removes to the working directory
1032
1032
1033 yields tuples for progress updates
1033 yields tuples for progress updates
1034 """
1034 """
1035 verbose = repo.ui.verbose
1035 verbose = repo.ui.verbose
1036 unlink = util.unlinkpath
1036 unlink = util.unlinkpath
1037 wjoin = repo.wjoin
1037 wjoin = repo.wjoin
1038 audit = repo.wvfs.audit
1038 audit = repo.wvfs.audit
1039 i = 0
1039 i = 0
1040 for f, args, msg in actions:
1040 for f, args, msg in actions:
1041 repo.ui.debug(" %s: %s -> r\n" % (f, msg))
1041 repo.ui.debug(" %s: %s -> r\n" % (f, msg))
1042 if verbose:
1042 if verbose:
1043 repo.ui.note(_("removing %s\n") % f)
1043 repo.ui.note(_("removing %s\n") % f)
1044 audit(f)
1044 audit(f)
1045 try:
1045 try:
1046 unlink(wjoin(f), ignoremissing=True)
1046 unlink(wjoin(f), ignoremissing=True)
1047 except OSError as inst:
1047 except OSError as inst:
1048 repo.ui.warn(_("update failed to remove %s: %s!\n") %
1048 repo.ui.warn(_("update failed to remove %s: %s!\n") %
1049 (f, inst.strerror))
1049 (f, inst.strerror))
1050 if i == 100:
1050 if i == 100:
1051 yield i, f
1051 yield i, f
1052 i = 0
1052 i = 0
1053 i += 1
1053 i += 1
1054 if i > 0:
1054 if i > 0:
1055 yield i, f
1055 yield i, f
1056
1056
1057 def batchget(repo, mctx, actions):
1057 def batchget(repo, mctx, actions):
1058 """apply gets to the working directory
1058 """apply gets to the working directory
1059
1059
1060 mctx is the context to get from
1060 mctx is the context to get from
1061
1061
1062 yields tuples for progress updates
1062 yields tuples for progress updates
1063 """
1063 """
1064 verbose = repo.ui.verbose
1064 verbose = repo.ui.verbose
1065 fctx = mctx.filectx
1065 fctx = mctx.filectx
1066 wwrite = repo.wwrite
1066 wwrite = repo.wwrite
1067 ui = repo.ui
1067 ui = repo.ui
1068 i = 0
1068 i = 0
1069 with repo.wvfs.backgroundclosing(ui, expectedcount=len(actions)):
1069 with repo.wvfs.backgroundclosing(ui, expectedcount=len(actions)):
1070 for f, (flags, backup), msg in actions:
1070 for f, (flags, backup), msg in actions:
1071 repo.ui.debug(" %s: %s -> g\n" % (f, msg))
1071 repo.ui.debug(" %s: %s -> g\n" % (f, msg))
1072 if verbose:
1072 if verbose:
1073 repo.ui.note(_("getting %s\n") % f)
1073 repo.ui.note(_("getting %s\n") % f)
1074
1074
1075 if backup:
1075 if backup:
1076 absf = repo.wjoin(f)
1076 absf = repo.wjoin(f)
1077 orig = scmutil.origpath(ui, repo, absf)
1077 orig = scmutil.origpath(ui, repo, absf)
1078 try:
1078 try:
1079 if repo.wvfs.isfileorlink(f):
1079 if repo.wvfs.isfileorlink(f):
1080 util.rename(absf, orig)
1080 util.rename(absf, orig)
1081 except OSError as e:
1081 except OSError as e:
1082 if e.errno != errno.ENOENT:
1082 if e.errno != errno.ENOENT:
1083 raise
1083 raise
1084
1084
1085 if repo.wvfs.isdir(f) and not repo.wvfs.islink(f):
1085 if repo.wvfs.isdir(f) and not repo.wvfs.islink(f):
1086 repo.wvfs.removedirs(f)
1086 repo.wvfs.removedirs(f)
1087 wwrite(f, fctx(f).data(), flags, backgroundclose=True)
1087 wwrite(f, fctx(f).data(), flags, backgroundclose=True)
1088 if i == 100:
1088 if i == 100:
1089 yield i, f
1089 yield i, f
1090 i = 0
1090 i = 0
1091 i += 1
1091 i += 1
1092 if i > 0:
1092 if i > 0:
1093 yield i, f
1093 yield i, f
1094
1094
1095 def applyupdates(repo, actions, wctx, mctx, overwrite, labels=None):
1095 def applyupdates(repo, actions, wctx, mctx, overwrite, labels=None):
1096 """apply the merge action list to the working directory
1096 """apply the merge action list to the working directory
1097
1097
1098 wctx is the working copy context
1098 wctx is the working copy context
1099 mctx is the context to be merged into the working copy
1099 mctx is the context to be merged into the working copy
1100
1100
1101 Return a tuple of counts (updated, merged, removed, unresolved) that
1101 Return a tuple of counts (updated, merged, removed, unresolved) that
1102 describes how many files were affected by the update.
1102 describes how many files were affected by the update.
1103 """
1103 """
1104
1104
1105 updated, merged, removed = 0, 0, 0
1105 updated, merged, removed = 0, 0, 0
1106 ms = mergestate.clean(repo, wctx.p1().node(), mctx.node(), labels)
1106 ms = mergestate.clean(repo, wctx.p1().node(), mctx.node(), labels)
1107 moves = []
1107 moves = []
1108 for m, l in actions.items():
1108 for m, l in actions.items():
1109 l.sort()
1109 l.sort()
1110
1110
1111 # 'cd' and 'dc' actions are treated like other merge conflicts
1111 # 'cd' and 'dc' actions are treated like other merge conflicts
1112 mergeactions = sorted(actions['cd'])
1112 mergeactions = sorted(actions['cd'])
1113 mergeactions.extend(sorted(actions['dc']))
1113 mergeactions.extend(sorted(actions['dc']))
1114 mergeactions.extend(actions['m'])
1114 mergeactions.extend(actions['m'])
1115 for f, args, msg in mergeactions:
1115 for f, args, msg in mergeactions:
1116 f1, f2, fa, move, anc = args
1116 f1, f2, fa, move, anc = args
1117 if f == '.hgsubstate': # merged internally
1117 if f == '.hgsubstate': # merged internally
1118 continue
1118 continue
1119 if f1 is None:
1119 if f1 is None:
1120 fcl = filemerge.absentfilectx(wctx, fa)
1120 fcl = filemerge.absentfilectx(wctx, fa)
1121 else:
1121 else:
1122 repo.ui.debug(" preserving %s for resolve of %s\n" % (f1, f))
1122 repo.ui.debug(" preserving %s for resolve of %s\n" % (f1, f))
1123 fcl = wctx[f1]
1123 fcl = wctx[f1]
1124 if f2 is None:
1124 if f2 is None:
1125 fco = filemerge.absentfilectx(mctx, fa)
1125 fco = filemerge.absentfilectx(mctx, fa)
1126 else:
1126 else:
1127 fco = mctx[f2]
1127 fco = mctx[f2]
1128 actx = repo[anc]
1128 actx = repo[anc]
1129 if fa in actx:
1129 if fa in actx:
1130 fca = actx[fa]
1130 fca = actx[fa]
1131 else:
1131 else:
1132 # TODO: move to absentfilectx
1132 # TODO: move to absentfilectx
1133 fca = repo.filectx(f1, fileid=nullrev)
1133 fca = repo.filectx(f1, fileid=nullrev)
1134 ms.add(fcl, fco, fca, f)
1134 ms.add(fcl, fco, fca, f)
1135 if f1 != f and move:
1135 if f1 != f and move:
1136 moves.append(f1)
1136 moves.append(f1)
1137
1137
1138 audit = repo.wvfs.audit
1138 audit = repo.wvfs.audit
1139 _updating = _('updating')
1139 _updating = _('updating')
1140 _files = _('files')
1140 _files = _('files')
1141 progress = repo.ui.progress
1141 progress = repo.ui.progress
1142
1142
1143 # remove renamed files after safely stored
1143 # remove renamed files after safely stored
1144 for f in moves:
1144 for f in moves:
1145 if os.path.lexists(repo.wjoin(f)):
1145 if os.path.lexists(repo.wjoin(f)):
1146 repo.ui.debug("removing %s\n" % f)
1146 repo.ui.debug("removing %s\n" % f)
1147 audit(f)
1147 audit(f)
1148 util.unlinkpath(repo.wjoin(f))
1148 util.unlinkpath(repo.wjoin(f))
1149
1149
1150 numupdates = sum(len(l) for m, l in actions.items() if m != 'k')
1150 numupdates = sum(len(l) for m, l in actions.items() if m != 'k')
1151
1151
1152 if [a for a in actions['r'] if a[0] == '.hgsubstate']:
1152 if [a for a in actions['r'] if a[0] == '.hgsubstate']:
1153 subrepo.submerge(repo, wctx, mctx, wctx, overwrite, labels)
1153 subrepo.submerge(repo, wctx, mctx, wctx, overwrite, labels)
1154
1154
1155 # remove in parallel (must come first)
1155 # remove in parallel (must come first)
1156 z = 0
1156 z = 0
1157 prog = worker.worker(repo.ui, 0.001, batchremove, (repo,), actions['r'])
1157 prog = worker.worker(repo.ui, 0.001, batchremove, (repo,), actions['r'])
1158 for i, item in prog:
1158 for i, item in prog:
1159 z += i
1159 z += i
1160 progress(_updating, z, item=item, total=numupdates, unit=_files)
1160 progress(_updating, z, item=item, total=numupdates, unit=_files)
1161 removed = len(actions['r'])
1161 removed = len(actions['r'])
1162
1162
1163 # get in parallel
1163 # get in parallel
1164 prog = worker.worker(repo.ui, 0.001, batchget, (repo, mctx), actions['g'])
1164 prog = worker.worker(repo.ui, 0.001, batchget, (repo, mctx), actions['g'])
1165 for i, item in prog:
1165 for i, item in prog:
1166 z += i
1166 z += i
1167 progress(_updating, z, item=item, total=numupdates, unit=_files)
1167 progress(_updating, z, item=item, total=numupdates, unit=_files)
1168 updated = len(actions['g'])
1168 updated = len(actions['g'])
1169
1169
1170 if [a for a in actions['g'] if a[0] == '.hgsubstate']:
1170 if [a for a in actions['g'] if a[0] == '.hgsubstate']:
1171 subrepo.submerge(repo, wctx, mctx, wctx, overwrite, labels)
1171 subrepo.submerge(repo, wctx, mctx, wctx, overwrite, labels)
1172
1172
1173 # forget (manifest only, just log it) (must come first)
1173 # forget (manifest only, just log it) (must come first)
1174 for f, args, msg in actions['f']:
1174 for f, args, msg in actions['f']:
1175 repo.ui.debug(" %s: %s -> f\n" % (f, msg))
1175 repo.ui.debug(" %s: %s -> f\n" % (f, msg))
1176 z += 1
1176 z += 1
1177 progress(_updating, z, item=f, total=numupdates, unit=_files)
1177 progress(_updating, z, item=f, total=numupdates, unit=_files)
1178
1178
1179 # re-add (manifest only, just log it)
1179 # re-add (manifest only, just log it)
1180 for f, args, msg in actions['a']:
1180 for f, args, msg in actions['a']:
1181 repo.ui.debug(" %s: %s -> a\n" % (f, msg))
1181 repo.ui.debug(" %s: %s -> a\n" % (f, msg))
1182 z += 1
1182 z += 1
1183 progress(_updating, z, item=f, total=numupdates, unit=_files)
1183 progress(_updating, z, item=f, total=numupdates, unit=_files)
1184
1184
1185 # re-add/mark as modified (manifest only, just log it)
1185 # re-add/mark as modified (manifest only, just log it)
1186 for f, args, msg in actions['am']:
1186 for f, args, msg in actions['am']:
1187 repo.ui.debug(" %s: %s -> am\n" % (f, msg))
1187 repo.ui.debug(" %s: %s -> am\n" % (f, msg))
1188 z += 1
1188 z += 1
1189 progress(_updating, z, item=f, total=numupdates, unit=_files)
1189 progress(_updating, z, item=f, total=numupdates, unit=_files)
1190
1190
1191 # keep (noop, just log it)
1191 # keep (noop, just log it)
1192 for f, args, msg in actions['k']:
1192 for f, args, msg in actions['k']:
1193 repo.ui.debug(" %s: %s -> k\n" % (f, msg))
1193 repo.ui.debug(" %s: %s -> k\n" % (f, msg))
1194 # no progress
1194 # no progress
1195
1195
1196 # directory rename, move local
1196 # directory rename, move local
1197 for f, args, msg in actions['dm']:
1197 for f, args, msg in actions['dm']:
1198 repo.ui.debug(" %s: %s -> dm\n" % (f, msg))
1198 repo.ui.debug(" %s: %s -> dm\n" % (f, msg))
1199 z += 1
1199 z += 1
1200 progress(_updating, z, item=f, total=numupdates, unit=_files)
1200 progress(_updating, z, item=f, total=numupdates, unit=_files)
1201 f0, flags = args
1201 f0, flags = args
1202 repo.ui.note(_("moving %s to %s\n") % (f0, f))
1202 repo.ui.note(_("moving %s to %s\n") % (f0, f))
1203 audit(f)
1203 audit(f)
1204 repo.wwrite(f, wctx.filectx(f0).data(), flags)
1204 repo.wwrite(f, wctx.filectx(f0).data(), flags)
1205 util.unlinkpath(repo.wjoin(f0))
1205 util.unlinkpath(repo.wjoin(f0))
1206 updated += 1
1206 updated += 1
1207
1207
1208 # local directory rename, get
1208 # local directory rename, get
1209 for f, args, msg in actions['dg']:
1209 for f, args, msg in actions['dg']:
1210 repo.ui.debug(" %s: %s -> dg\n" % (f, msg))
1210 repo.ui.debug(" %s: %s -> dg\n" % (f, msg))
1211 z += 1
1211 z += 1
1212 progress(_updating, z, item=f, total=numupdates, unit=_files)
1212 progress(_updating, z, item=f, total=numupdates, unit=_files)
1213 f0, flags = args
1213 f0, flags = args
1214 repo.ui.note(_("getting %s to %s\n") % (f0, f))
1214 repo.ui.note(_("getting %s to %s\n") % (f0, f))
1215 repo.wwrite(f, mctx.filectx(f0).data(), flags)
1215 repo.wwrite(f, mctx.filectx(f0).data(), flags)
1216 updated += 1
1216 updated += 1
1217
1217
1218 # exec
1218 # exec
1219 for f, args, msg in actions['e']:
1219 for f, args, msg in actions['e']:
1220 repo.ui.debug(" %s: %s -> e\n" % (f, msg))
1220 repo.ui.debug(" %s: %s -> e\n" % (f, msg))
1221 z += 1
1221 z += 1
1222 progress(_updating, z, item=f, total=numupdates, unit=_files)
1222 progress(_updating, z, item=f, total=numupdates, unit=_files)
1223 flags, = args
1223 flags, = args
1224 audit(f)
1224 audit(f)
1225 util.setflags(repo.wjoin(f), 'l' in flags, 'x' in flags)
1225 util.setflags(repo.wjoin(f), 'l' in flags, 'x' in flags)
1226 updated += 1
1226 updated += 1
1227
1227
1228 # the ordering is important here -- ms.mergedriver will raise if the merge
1228 # the ordering is important here -- ms.mergedriver will raise if the merge
1229 # driver has changed, and we want to be able to bypass it when overwrite is
1229 # driver has changed, and we want to be able to bypass it when overwrite is
1230 # True
1230 # True
1231 usemergedriver = not overwrite and mergeactions and ms.mergedriver
1231 usemergedriver = not overwrite and mergeactions and ms.mergedriver
1232
1232
1233 if usemergedriver:
1233 if usemergedriver:
1234 ms.commit()
1234 ms.commit()
1235 proceed = driverpreprocess(repo, ms, wctx, labels=labels)
1235 proceed = driverpreprocess(repo, ms, wctx, labels=labels)
1236 # the driver might leave some files unresolved
1236 # the driver might leave some files unresolved
1237 unresolvedf = set(ms.unresolved())
1237 unresolvedf = set(ms.unresolved())
1238 if not proceed:
1238 if not proceed:
1239 # XXX setting unresolved to at least 1 is a hack to make sure we
1239 # XXX setting unresolved to at least 1 is a hack to make sure we
1240 # error out
1240 # error out
1241 return updated, merged, removed, max(len(unresolvedf), 1)
1241 return updated, merged, removed, max(len(unresolvedf), 1)
1242 newactions = []
1242 newactions = []
1243 for f, args, msg in mergeactions:
1243 for f, args, msg in mergeactions:
1244 if f in unresolvedf:
1244 if f in unresolvedf:
1245 newactions.append((f, args, msg))
1245 newactions.append((f, args, msg))
1246 mergeactions = newactions
1246 mergeactions = newactions
1247
1247
1248 # premerge
1248 # premerge
1249 tocomplete = []
1249 tocomplete = []
1250 for f, args, msg in mergeactions:
1250 for f, args, msg in mergeactions:
1251 repo.ui.debug(" %s: %s -> m (premerge)\n" % (f, msg))
1251 repo.ui.debug(" %s: %s -> m (premerge)\n" % (f, msg))
1252 z += 1
1252 z += 1
1253 progress(_updating, z, item=f, total=numupdates, unit=_files)
1253 progress(_updating, z, item=f, total=numupdates, unit=_files)
1254 if f == '.hgsubstate': # subrepo states need updating
1254 if f == '.hgsubstate': # subrepo states need updating
1255 subrepo.submerge(repo, wctx, mctx, wctx.ancestor(mctx),
1255 subrepo.submerge(repo, wctx, mctx, wctx.ancestor(mctx),
1256 overwrite, labels)
1256 overwrite, labels)
1257 continue
1257 continue
1258 audit(f)
1258 audit(f)
1259 complete, r = ms.preresolve(f, wctx)
1259 complete, r = ms.preresolve(f, wctx)
1260 if not complete:
1260 if not complete:
1261 numupdates += 1
1261 numupdates += 1
1262 tocomplete.append((f, args, msg))
1262 tocomplete.append((f, args, msg))
1263
1263
1264 # merge
1264 # merge
1265 for f, args, msg in tocomplete:
1265 for f, args, msg in tocomplete:
1266 repo.ui.debug(" %s: %s -> m (merge)\n" % (f, msg))
1266 repo.ui.debug(" %s: %s -> m (merge)\n" % (f, msg))
1267 z += 1
1267 z += 1
1268 progress(_updating, z, item=f, total=numupdates, unit=_files)
1268 progress(_updating, z, item=f, total=numupdates, unit=_files)
1269 ms.resolve(f, wctx)
1269 ms.resolve(f, wctx)
1270
1270
1271 ms.commit()
1271 ms.commit()
1272
1272
1273 unresolved = ms.unresolvedcount()
1273 unresolved = ms.unresolvedcount()
1274
1274
1275 if usemergedriver and not unresolved and ms.mdstate() != 's':
1275 if usemergedriver and not unresolved and ms.mdstate() != 's':
1276 if not driverconclude(repo, ms, wctx, labels=labels):
1276 if not driverconclude(repo, ms, wctx, labels=labels):
1277 # XXX setting unresolved to at least 1 is a hack to make sure we
1277 # XXX setting unresolved to at least 1 is a hack to make sure we
1278 # error out
1278 # error out
1279 unresolved = max(unresolved, 1)
1279 unresolved = max(unresolved, 1)
1280
1280
1281 ms.commit()
1281 ms.commit()
1282
1282
1283 msupdated, msmerged, msremoved = ms.counts()
1283 msupdated, msmerged, msremoved = ms.counts()
1284 updated += msupdated
1284 updated += msupdated
1285 merged += msmerged
1285 merged += msmerged
1286 removed += msremoved
1286 removed += msremoved
1287
1287
1288 extraactions = ms.actions()
1288 extraactions = ms.actions()
1289 if extraactions:
1289 if extraactions:
1290 mfiles = set(a[0] for a in actions['m'])
1290 mfiles = set(a[0] for a in actions['m'])
1291 for k, acts in extraactions.iteritems():
1291 for k, acts in extraactions.iteritems():
1292 actions[k].extend(acts)
1292 actions[k].extend(acts)
1293 # Remove these files from actions['m'] as well. This is important
1293 # Remove these files from actions['m'] as well. This is important
1294 # because in recordupdates, files in actions['m'] are processed
1294 # because in recordupdates, files in actions['m'] are processed
1295 # after files in other actions, and the merge driver might add
1295 # after files in other actions, and the merge driver might add
1296 # files to those actions via extraactions above. This can lead to a
1296 # files to those actions via extraactions above. This can lead to a
1297 # file being recorded twice, with poor results. This is especially
1297 # file being recorded twice, with poor results. This is especially
1298 # problematic for actions['r'] (currently only possible with the
1298 # problematic for actions['r'] (currently only possible with the
1299 # merge driver in the initial merge process; interrupted merges
1299 # merge driver in the initial merge process; interrupted merges
1300 # don't go through this flow).
1300 # don't go through this flow).
1301 #
1301 #
1302 # The real fix here is to have indexes by both file and action so
1302 # The real fix here is to have indexes by both file and action so
1303 # that when the action for a file is changed it is automatically
1303 # that when the action for a file is changed it is automatically
1304 # reflected in the other action lists. But that involves a more
1304 # reflected in the other action lists. But that involves a more
1305 # complex data structure, so this will do for now.
1305 # complex data structure, so this will do for now.
1306 #
1306 #
1307 # We don't need to do the same operation for 'dc' and 'cd' because
1307 # We don't need to do the same operation for 'dc' and 'cd' because
1308 # those lists aren't consulted again.
1308 # those lists aren't consulted again.
1309 mfiles.difference_update(a[0] for a in acts)
1309 mfiles.difference_update(a[0] for a in acts)
1310
1310
1311 actions['m'] = [a for a in actions['m'] if a[0] in mfiles]
1311 actions['m'] = [a for a in actions['m'] if a[0] in mfiles]
1312
1312
1313 progress(_updating, None, total=numupdates, unit=_files)
1313 progress(_updating, None, total=numupdates, unit=_files)
1314
1314
1315 return updated, merged, removed, unresolved
1315 return updated, merged, removed, unresolved
1316
1316
1317 def recordupdates(repo, actions, branchmerge):
1317 def recordupdates(repo, actions, branchmerge):
1318 "record merge actions to the dirstate"
1318 "record merge actions to the dirstate"
1319 # remove (must come first)
1319 # remove (must come first)
1320 for f, args, msg in actions.get('r', []):
1320 for f, args, msg in actions.get('r', []):
1321 if branchmerge:
1321 if branchmerge:
1322 repo.dirstate.remove(f)
1322 repo.dirstate.remove(f)
1323 else:
1323 else:
1324 repo.dirstate.drop(f)
1324 repo.dirstate.drop(f)
1325
1325
1326 # forget (must come first)
1326 # forget (must come first)
1327 for f, args, msg in actions.get('f', []):
1327 for f, args, msg in actions.get('f', []):
1328 repo.dirstate.drop(f)
1328 repo.dirstate.drop(f)
1329
1329
1330 # re-add
1330 # re-add
1331 for f, args, msg in actions.get('a', []):
1331 for f, args, msg in actions.get('a', []):
1332 repo.dirstate.add(f)
1332 repo.dirstate.add(f)
1333
1333
1334 # re-add/mark as modified
1334 # re-add/mark as modified
1335 for f, args, msg in actions.get('am', []):
1335 for f, args, msg in actions.get('am', []):
1336 if branchmerge:
1336 if branchmerge:
1337 repo.dirstate.normallookup(f)
1337 repo.dirstate.normallookup(f)
1338 else:
1338 else:
1339 repo.dirstate.add(f)
1339 repo.dirstate.add(f)
1340
1340
1341 # exec change
1341 # exec change
1342 for f, args, msg in actions.get('e', []):
1342 for f, args, msg in actions.get('e', []):
1343 repo.dirstate.normallookup(f)
1343 repo.dirstate.normallookup(f)
1344
1344
1345 # keep
1345 # keep
1346 for f, args, msg in actions.get('k', []):
1346 for f, args, msg in actions.get('k', []):
1347 pass
1347 pass
1348
1348
1349 # get
1349 # get
1350 for f, args, msg in actions.get('g', []):
1350 for f, args, msg in actions.get('g', []):
1351 if branchmerge:
1351 if branchmerge:
1352 repo.dirstate.otherparent(f)
1352 repo.dirstate.otherparent(f)
1353 else:
1353 else:
1354 repo.dirstate.normal(f)
1354 repo.dirstate.normal(f)
1355
1355
1356 # merge
1356 # merge
1357 for f, args, msg in actions.get('m', []):
1357 for f, args, msg in actions.get('m', []):
1358 f1, f2, fa, move, anc = args
1358 f1, f2, fa, move, anc = args
1359 if branchmerge:
1359 if branchmerge:
1360 # We've done a branch merge, mark this file as merged
1360 # We've done a branch merge, mark this file as merged
1361 # so that we properly record the merger later
1361 # so that we properly record the merger later
1362 repo.dirstate.merge(f)
1362 repo.dirstate.merge(f)
1363 if f1 != f2: # copy/rename
1363 if f1 != f2: # copy/rename
1364 if move:
1364 if move:
1365 repo.dirstate.remove(f1)
1365 repo.dirstate.remove(f1)
1366 if f1 != f:
1366 if f1 != f:
1367 repo.dirstate.copy(f1, f)
1367 repo.dirstate.copy(f1, f)
1368 else:
1368 else:
1369 repo.dirstate.copy(f2, f)
1369 repo.dirstate.copy(f2, f)
1370 else:
1370 else:
1371 # We've update-merged a locally modified file, so
1371 # We've update-merged a locally modified file, so
1372 # we set the dirstate to emulate a normal checkout
1372 # we set the dirstate to emulate a normal checkout
1373 # of that file some time in the past. Thus our
1373 # of that file some time in the past. Thus our
1374 # merge will appear as a normal local file
1374 # merge will appear as a normal local file
1375 # modification.
1375 # modification.
1376 if f2 == f: # file not locally copied/moved
1376 if f2 == f: # file not locally copied/moved
1377 repo.dirstate.normallookup(f)
1377 repo.dirstate.normallookup(f)
1378 if move:
1378 if move:
1379 repo.dirstate.drop(f1)
1379 repo.dirstate.drop(f1)
1380
1380
1381 # directory rename, move local
1381 # directory rename, move local
1382 for f, args, msg in actions.get('dm', []):
1382 for f, args, msg in actions.get('dm', []):
1383 f0, flag = args
1383 f0, flag = args
1384 if branchmerge:
1384 if branchmerge:
1385 repo.dirstate.add(f)
1385 repo.dirstate.add(f)
1386 repo.dirstate.remove(f0)
1386 repo.dirstate.remove(f0)
1387 repo.dirstate.copy(f0, f)
1387 repo.dirstate.copy(f0, f)
1388 else:
1388 else:
1389 repo.dirstate.normal(f)
1389 repo.dirstate.normal(f)
1390 repo.dirstate.drop(f0)
1390 repo.dirstate.drop(f0)
1391
1391
1392 # directory rename, get
1392 # directory rename, get
1393 for f, args, msg in actions.get('dg', []):
1393 for f, args, msg in actions.get('dg', []):
1394 f0, flag = args
1394 f0, flag = args
1395 if branchmerge:
1395 if branchmerge:
1396 repo.dirstate.add(f)
1396 repo.dirstate.add(f)
1397 repo.dirstate.copy(f0, f)
1397 repo.dirstate.copy(f0, f)
1398 else:
1398 else:
1399 repo.dirstate.normal(f)
1399 repo.dirstate.normal(f)
1400
1400
1401 def update(repo, node, branchmerge, force, ancestor=None,
1401 def update(repo, node, branchmerge, force, ancestor=None,
1402 mergeancestor=False, labels=None, matcher=None, mergeforce=False):
1402 mergeancestor=False, labels=None, matcher=None, mergeforce=False):
1403 """
1403 """
1404 Perform a merge between the working directory and the given node
1404 Perform a merge between the working directory and the given node
1405
1405
1406 node = the node to update to, or None if unspecified
1406 node = the node to update to, or None if unspecified
1407 branchmerge = whether to merge between branches
1407 branchmerge = whether to merge between branches
1408 force = whether to force branch merging or file overwriting
1408 force = whether to force branch merging or file overwriting
1409 matcher = a matcher to filter file lists (dirstate not updated)
1409 matcher = a matcher to filter file lists (dirstate not updated)
1410 mergeancestor = whether it is merging with an ancestor. If true,
1410 mergeancestor = whether it is merging with an ancestor. If true,
1411 we should accept the incoming changes for any prompts that occur.
1411 we should accept the incoming changes for any prompts that occur.
1412 If false, merging with an ancestor (fast-forward) is only allowed
1412 If false, merging with an ancestor (fast-forward) is only allowed
1413 between different named branches. This flag is used by rebase extension
1413 between different named branches. This flag is used by rebase extension
1414 as a temporary fix and should be avoided in general.
1414 as a temporary fix and should be avoided in general.
1415 labels = labels to use for base, local and other
1415 labels = labels to use for base, local and other
1416 mergeforce = whether the merge was run with 'merge --force' (deprecated): if
1416 mergeforce = whether the merge was run with 'merge --force' (deprecated): if
1417 this is True, then 'force' should be True as well.
1417 this is True, then 'force' should be True as well.
1418
1418
1419 The table below shows all the behaviors of the update command
1419 The table below shows all the behaviors of the update command
1420 given the -c and -C or no options, whether the working directory
1420 given the -c and -C or no options, whether the working directory
1421 is dirty, whether a revision is specified, and the relationship of
1421 is dirty, whether a revision is specified, and the relationship of
1422 the parent rev to the target rev (linear, on the same named
1422 the parent rev to the target rev (linear, on the same named
1423 branch, or on another named branch).
1423 branch, or on another named branch).
1424
1424
1425 This logic is tested by test-update-branches.t.
1425 This logic is tested by test-update-branches.t.
1426
1426
1427 -c -C dirty rev | linear same cross
1427 -c -C dirty rev | linear same cross
1428 n n n n | ok (1) x
1428 n n n n | ok (1) x
1429 n n n y | ok ok ok
1429 n n n y | ok ok ok
1430 n n y n | merge (2) (2)
1430 n n y n | merge (2) (2)
1431 n n y y | merge (3) (3)
1431 n n y y | merge (3) (3)
1432 n y * * | discard discard discard
1432 n y * * | discard discard discard
1433 y n y * | (4) (4) (4)
1433 y n y * | (4) (4) (4)
1434 y n n * | ok ok ok
1434 y n n * | ok ok ok
1435 y y * * | (5) (5) (5)
1435 y y * * | (5) (5) (5)
1436
1436
1437 x = can't happen
1437 x = can't happen
1438 * = don't-care
1438 * = don't-care
1439 1 = abort: not a linear update (merge or update --check to force update)
1439 1 = abort: not a linear update (merge or update --check to force update)
1440 2 = abort: uncommitted changes (commit and merge, or update --clean to
1440 2 = abort: uncommitted changes (commit and merge, or update --clean to
1441 discard changes)
1441 discard changes)
1442 3 = abort: uncommitted changes (commit or update --clean to discard changes)
1442 3 = abort: uncommitted changes (commit or update --clean to discard changes)
1443 4 = abort: uncommitted changes (checked in commands.py)
1443 4 = abort: uncommitted changes (checked in commands.py)
1444 5 = incompatible options (checked in commands.py)
1444 5 = incompatible options (checked in commands.py)
1445
1445
1446 Return the same tuple as applyupdates().
1446 Return the same tuple as applyupdates().
1447 """
1447 """
1448
1448
1449 onode = node
1449 onode = node
1450 # If we're doing a partial update, we need to skip updating
1450 # If we're doing a partial update, we need to skip updating
1451 # the dirstate, so make a note of any partial-ness to the
1451 # the dirstate, so make a note of any partial-ness to the
1452 # update here.
1452 # update here.
1453 if matcher is None or matcher.always():
1453 if matcher is None or matcher.always():
1454 partial = False
1454 partial = False
1455 else:
1455 else:
1456 partial = True
1456 partial = True
1457 with repo.wlock():
1457 with repo.wlock():
1458 wc = repo[None]
1458 wc = repo[None]
1459 pl = wc.parents()
1459 pl = wc.parents()
1460 p1 = pl[0]
1460 p1 = pl[0]
1461 pas = [None]
1461 pas = [None]
1462 if ancestor is not None:
1462 if ancestor is not None:
1463 pas = [repo[ancestor]]
1463 pas = [repo[ancestor]]
1464
1464
1465 if node is None:
1465 if node is None:
1466 repo.ui.deprecwarn('update with no target', '3.9')
1466 repo.ui.deprecwarn('update with no target', '3.9')
1467 rev, _mark, _act = destutil.destupdate(repo)
1467 rev, _mark, _act = destutil.destupdate(repo)
1468 node = repo[rev].node()
1468 node = repo[rev].node()
1469
1469
1470 overwrite = force and not branchmerge
1470 overwrite = force and not branchmerge
1471
1471
1472 p2 = repo[node]
1472 p2 = repo[node]
1473 if pas[0] is None:
1473 if pas[0] is None:
1474 if repo.ui.configlist('merge', 'preferancestor', ['*']) == ['*']:
1474 if repo.ui.configlist('merge', 'preferancestor', ['*']) == ['*']:
1475 cahs = repo.changelog.commonancestorsheads(p1.node(), p2.node())
1475 cahs = repo.changelog.commonancestorsheads(p1.node(), p2.node())
1476 pas = [repo[anc] for anc in (sorted(cahs) or [nullid])]
1476 pas = [repo[anc] for anc in (sorted(cahs) or [nullid])]
1477 else:
1477 else:
1478 pas = [p1.ancestor(p2, warn=branchmerge)]
1478 pas = [p1.ancestor(p2, warn=branchmerge)]
1479
1479
1480 fp1, fp2, xp1, xp2 = p1.node(), p2.node(), str(p1), str(p2)
1480 fp1, fp2, xp1, xp2 = p1.node(), p2.node(), str(p1), str(p2)
1481
1481
1482 ### check phase
1482 ### check phase
1483 if not overwrite:
1483 if not overwrite:
1484 if len(pl) > 1:
1484 if len(pl) > 1:
1485 raise error.Abort(_("outstanding uncommitted merge"))
1485 raise error.Abort(_("outstanding uncommitted merge"))
1486 ms = mergestate.read(repo)
1486 ms = mergestate.read(repo)
1487 if list(ms.unresolved()):
1487 if list(ms.unresolved()):
1488 raise error.Abort(_("outstanding merge conflicts"))
1488 raise error.Abort(_("outstanding merge conflicts"))
1489 if branchmerge:
1489 if branchmerge:
1490 if pas == [p2]:
1490 if pas == [p2]:
1491 raise error.Abort(_("merging with a working directory ancestor"
1491 raise error.Abort(_("merging with a working directory ancestor"
1492 " has no effect"))
1492 " has no effect"))
1493 elif pas == [p1]:
1493 elif pas == [p1]:
1494 if not mergeancestor and p1.branch() == p2.branch():
1494 if not mergeancestor and p1.branch() == p2.branch():
1495 raise error.Abort(_("nothing to merge"),
1495 raise error.Abort(_("nothing to merge"),
1496 hint=_("use 'hg update' "
1496 hint=_("use 'hg update' "
1497 "or check 'hg heads'"))
1497 "or check 'hg heads'"))
1498 if not force and (wc.files() or wc.deleted()):
1498 if not force and (wc.files() or wc.deleted()):
1499 raise error.Abort(_("uncommitted changes"),
1499 raise error.Abort(_("uncommitted changes"),
1500 hint=_("use 'hg status' to list changes"))
1500 hint=_("use 'hg status' to list changes"))
1501 for s in sorted(wc.substate):
1501 for s in sorted(wc.substate):
1502 wc.sub(s).bailifchanged()
1502 wc.sub(s).bailifchanged()
1503
1503
1504 elif not overwrite:
1504 elif not overwrite:
1505 if p1 == p2: # no-op update
1505 if p1 == p2: # no-op update
1506 # call the hooks and exit early
1506 # call the hooks and exit early
1507 repo.hook('preupdate', throw=True, parent1=xp2, parent2='')
1507 repo.hook('preupdate', throw=True, parent1=xp2, parent2='')
1508 repo.hook('update', parent1=xp2, parent2='', error=0)
1508 repo.hook('update', parent1=xp2, parent2='', error=0)
1509 return 0, 0, 0, 0
1509 return 0, 0, 0, 0
1510
1510
1511 if pas not in ([p1], [p2]): # nonlinear
1511 if pas not in ([p1], [p2]): # nonlinear
1512 dirty = wc.dirty(missing=True)
1512 dirty = wc.dirty(missing=True)
1513 if dirty or onode is None:
1513 if dirty or onode is None:
1514 # Branching is a bit strange to ensure we do the minimal
1514 # Branching is a bit strange to ensure we do the minimal
1515 # amount of call to obsolete.background.
1515 # amount of call to obsolete.background.
1516 foreground = obsolete.foreground(repo, [p1.node()])
1516 foreground = obsolete.foreground(repo, [p1.node()])
1517 # note: the <node> variable contains a random identifier
1517 # note: the <node> variable contains a random identifier
1518 if repo[node].node() in foreground:
1518 if repo[node].node() in foreground:
1519 pas = [p1] # allow updating to successors
1519 pas = [p1] # allow updating to successors
1520 elif dirty:
1520 elif dirty:
1521 msg = _("uncommitted changes")
1521 msg = _("uncommitted changes")
1522 if onode is None:
1522 if onode is None:
1523 hint = _("commit and merge, or update --clean to"
1523 hint = _("commit and merge, or update --clean to"
1524 " discard changes")
1524 " discard changes")
1525 else:
1525 else:
1526 hint = _("commit or update --clean to discard"
1526 hint = _("commit or update --clean to discard"
1527 " changes")
1527 " changes")
1528 raise error.Abort(msg, hint=hint)
1528 raise error.Abort(msg, hint=hint)
1529 else: # node is none
1529 else: # node is none
1530 msg = _("not a linear update")
1530 msg = _("not a linear update")
1531 hint = _("merge or update --check to force update")
1531 hint = _("merge or update --check to force update")
1532 raise error.Abort(msg, hint=hint)
1532 raise error.Abort(msg, hint=hint)
1533 else:
1533 else:
1534 # Allow jumping branches if clean and specific rev given
1534 # Allow jumping branches if clean and specific rev given
1535 pas = [p1]
1535 pas = [p1]
1536
1536
1537 # deprecated config: merge.followcopies
1537 # deprecated config: merge.followcopies
1538 followcopies = False
1538 followcopies = False
1539 if overwrite:
1539 if overwrite:
1540 pas = [wc]
1540 pas = [wc]
1541 elif pas == [p2]: # backwards
1541 elif pas == [p2]: # backwards
1542 pas = [wc.p1()]
1542 pas = [wc.p1()]
1543 elif not branchmerge and not wc.dirty(missing=True):
1543 elif not branchmerge and not wc.dirty(missing=True):
1544 pass
1544 pass
1545 elif pas[0] and repo.ui.configbool('merge', 'followcopies', True):
1545 elif pas[0] and repo.ui.configbool('merge', 'followcopies', True):
1546 followcopies = True
1546 followcopies = True
1547
1547
1548 ### calculate phase
1548 ### calculate phase
1549 actionbyfile, diverge, renamedelete = calculateupdates(
1549 actionbyfile, diverge, renamedelete = calculateupdates(
1550 repo, wc, p2, pas, branchmerge, force, mergeancestor,
1550 repo, wc, p2, pas, branchmerge, force, mergeancestor,
1551 followcopies, matcher=matcher, mergeforce=mergeforce)
1551 followcopies, matcher=matcher, mergeforce=mergeforce)
1552
1552
1553 # Prompt and create actions. Most of this is in the resolve phase
1553 # Prompt and create actions. Most of this is in the resolve phase
1554 # already, but we can't handle .hgsubstate in filemerge or
1554 # already, but we can't handle .hgsubstate in filemerge or
1555 # subrepo.submerge yet so we have to keep prompting for it.
1555 # subrepo.submerge yet so we have to keep prompting for it.
1556 if '.hgsubstate' in actionbyfile:
1556 if '.hgsubstate' in actionbyfile:
1557 f = '.hgsubstate'
1557 f = '.hgsubstate'
1558 m, args, msg = actionbyfile[f]
1558 m, args, msg = actionbyfile[f]
1559 prompts = filemerge.partextras(labels)
1559 prompts = filemerge.partextras(labels)
1560 prompts['f'] = f
1560 prompts['f'] = f
1561 if m == 'cd':
1561 if m == 'cd':
1562 if repo.ui.promptchoice(
1562 if repo.ui.promptchoice(
1563 _("local%(l)s changed %(f)s which other%(o)s deleted\n"
1563 _("local%(l)s changed %(f)s which other%(o)s deleted\n"
1564 "use (c)hanged version or (d)elete?"
1564 "use (c)hanged version or (d)elete?"
1565 "$$ &Changed $$ &Delete") % prompts, 0):
1565 "$$ &Changed $$ &Delete") % prompts, 0):
1566 actionbyfile[f] = ('r', None, "prompt delete")
1566 actionbyfile[f] = ('r', None, "prompt delete")
1567 elif f in p1:
1567 elif f in p1:
1568 actionbyfile[f] = ('am', None, "prompt keep")
1568 actionbyfile[f] = ('am', None, "prompt keep")
1569 else:
1569 else:
1570 actionbyfile[f] = ('a', None, "prompt keep")
1570 actionbyfile[f] = ('a', None, "prompt keep")
1571 elif m == 'dc':
1571 elif m == 'dc':
1572 f1, f2, fa, move, anc = args
1572 f1, f2, fa, move, anc = args
1573 flags = p2[f2].flags()
1573 flags = p2[f2].flags()
1574 if repo.ui.promptchoice(
1574 if repo.ui.promptchoice(
1575 _("other%(o)s changed %(f)s which local%(l)s deleted\n"
1575 _("other%(o)s changed %(f)s which local%(l)s deleted\n"
1576 "use (c)hanged version or leave (d)eleted?"
1576 "use (c)hanged version or leave (d)eleted?"
1577 "$$ &Changed $$ &Deleted") % prompts, 0) == 0:
1577 "$$ &Changed $$ &Deleted") % prompts, 0) == 0:
1578 actionbyfile[f] = ('g', (flags, False), "prompt recreating")
1578 actionbyfile[f] = ('g', (flags, False), "prompt recreating")
1579 else:
1579 else:
1580 del actionbyfile[f]
1580 del actionbyfile[f]
1581
1581
1582 # Convert to dictionary-of-lists format
1582 # Convert to dictionary-of-lists format
1583 actions = dict((m, []) for m in 'a am f g cd dc r dm dg m e k'.split())
1583 actions = dict((m, []) for m in 'a am f g cd dc r dm dg m e k'.split())
1584 for f, (m, args, msg) in actionbyfile.iteritems():
1584 for f, (m, args, msg) in actionbyfile.iteritems():
1585 if m not in actions:
1585 if m not in actions:
1586 actions[m] = []
1586 actions[m] = []
1587 actions[m].append((f, args, msg))
1587 actions[m].append((f, args, msg))
1588
1588
1589 if not util.fscasesensitive(repo.path):
1589 if not util.fscasesensitive(repo.path):
1590 # check collision between files only in p2 for clean update
1590 # check collision between files only in p2 for clean update
1591 if (not branchmerge and
1591 if (not branchmerge and
1592 (force or not wc.dirty(missing=True, branch=False))):
1592 (force or not wc.dirty(missing=True, branch=False))):
1593 _checkcollision(repo, p2.manifest(), None)
1593 _checkcollision(repo, p2.manifest(), None)
1594 else:
1594 else:
1595 _checkcollision(repo, wc.manifest(), actions)
1595 _checkcollision(repo, wc.manifest(), actions)
1596
1596
1597 # divergent renames
1597 # divergent renames
1598 for f, fl in sorted(diverge.iteritems()):
1598 for f, fl in sorted(diverge.iteritems()):
1599 repo.ui.warn(_("note: possible conflict - %s was renamed "
1599 repo.ui.warn(_("note: possible conflict - %s was renamed "
1600 "multiple times to:\n") % f)
1600 "multiple times to:\n") % f)
1601 for nf in fl:
1601 for nf in fl:
1602 repo.ui.warn(" %s\n" % nf)
1602 repo.ui.warn(" %s\n" % nf)
1603
1603
1604 # rename and delete
1604 # rename and delete
1605 for f, fl in sorted(renamedelete.iteritems()):
1605 for f, fl in sorted(renamedelete.iteritems()):
1606 repo.ui.warn(_("note: possible conflict - %s was deleted "
1606 repo.ui.warn(_("note: possible conflict - %s was deleted "
1607 "and renamed to:\n") % f)
1607 "and renamed to:\n") % f)
1608 for nf in fl:
1608 for nf in fl:
1609 repo.ui.warn(" %s\n" % nf)
1609 repo.ui.warn(" %s\n" % nf)
1610
1610
1611 ### apply phase
1611 ### apply phase
1612 if not branchmerge: # just jump to the new rev
1612 if not branchmerge: # just jump to the new rev
1613 fp1, fp2, xp1, xp2 = fp2, nullid, xp2, ''
1613 fp1, fp2, xp1, xp2 = fp2, nullid, xp2, ''
1614 if not partial:
1614 if not partial:
1615 repo.hook('preupdate', throw=True, parent1=xp1, parent2=xp2)
1615 repo.hook('preupdate', throw=True, parent1=xp1, parent2=xp2)
1616 # note that we're in the middle of an update
1616 # note that we're in the middle of an update
1617 repo.vfs.write('updatestate', p2.hex())
1617 repo.vfs.write('updatestate', p2.hex())
1618
1618
1619 stats = applyupdates(repo, actions, wc, p2, overwrite, labels=labels)
1619 stats = applyupdates(repo, actions, wc, p2, overwrite, labels=labels)
1620
1620
1621 if not partial:
1621 if not partial:
1622 repo.dirstate.beginparentchange()
1622 repo.dirstate.beginparentchange()
1623 repo.setparents(fp1, fp2)
1623 repo.setparents(fp1, fp2)
1624 recordupdates(repo, actions, branchmerge)
1624 recordupdates(repo, actions, branchmerge)
1625 # update completed, clear state
1625 # update completed, clear state
1626 util.unlink(repo.join('updatestate'))
1626 util.unlink(repo.join('updatestate'))
1627
1627
1628 if not branchmerge:
1628 if not branchmerge:
1629 repo.dirstate.setbranch(p2.branch())
1629 repo.dirstate.setbranch(p2.branch())
1630 repo.dirstate.endparentchange()
1630 repo.dirstate.endparentchange()
1631
1631
1632 if not partial:
1632 if not partial:
1633 repo.hook('update', parent1=xp1, parent2=xp2, error=stats[3])
1633 repo.hook('update', parent1=xp1, parent2=xp2, error=stats[3])
1634 return stats
1634 return stats
1635
1635
1636 def graft(repo, ctx, pctx, labels, keepparent=False):
1636 def graft(repo, ctx, pctx, labels, keepparent=False):
1637 """Do a graft-like merge.
1637 """Do a graft-like merge.
1638
1638
1639 This is a merge where the merge ancestor is chosen such that one
1639 This is a merge where the merge ancestor is chosen such that one
1640 or more changesets are grafted onto the current changeset. In
1640 or more changesets are grafted onto the current changeset. In
1641 addition to the merge, this fixes up the dirstate to include only
1641 addition to the merge, this fixes up the dirstate to include only
1642 a single parent (if keepparent is False) and tries to duplicate any
1642 a single parent (if keepparent is False) and tries to duplicate any
1643 renames/copies appropriately.
1643 renames/copies appropriately.
1644
1644
1645 ctx - changeset to rebase
1645 ctx - changeset to rebase
1646 pctx - merge base, usually ctx.p1()
1646 pctx - merge base, usually ctx.p1()
1647 labels - merge labels eg ['local', 'graft']
1647 labels - merge labels eg ['local', 'graft']
1648 keepparent - keep second parent if any
1648 keepparent - keep second parent if any
1649
1649
1650 """
1650 """
1651 # If we're grafting a descendant onto an ancestor, be sure to pass
1651 # If we're grafting a descendant onto an ancestor, be sure to pass
1652 # mergeancestor=True to update. This does two things: 1) allows the merge if
1652 # mergeancestor=True to update. This does two things: 1) allows the merge if
1653 # the destination is the same as the parent of the ctx (so we can use graft
1653 # the destination is the same as the parent of the ctx (so we can use graft
1654 # to copy commits), and 2) informs update that the incoming changes are
1654 # to copy commits), and 2) informs update that the incoming changes are
1655 # newer than the destination so it doesn't prompt about "remote changed foo
1655 # newer than the destination so it doesn't prompt about "remote changed foo
1656 # which local deleted".
1656 # which local deleted".
1657 mergeancestor = repo.changelog.isancestor(repo['.'].node(), ctx.node())
1657 mergeancestor = repo.changelog.isancestor(repo['.'].node(), ctx.node())
1658
1658
1659 stats = update(repo, ctx.node(), True, True, pctx.node(),
1659 stats = update(repo, ctx.node(), True, True, pctx.node(),
1660 mergeancestor=mergeancestor, labels=labels)
1660 mergeancestor=mergeancestor, labels=labels)
1661
1661
1662 pother = nullid
1662 pother = nullid
1663 parents = ctx.parents()
1663 parents = ctx.parents()
1664 if keepparent and len(parents) == 2 and pctx in parents:
1664 if keepparent and len(parents) == 2 and pctx in parents:
1665 parents.remove(pctx)
1665 parents.remove(pctx)
1666 pother = parents[0].node()
1666 pother = parents[0].node()
1667
1667
1668 repo.dirstate.beginparentchange()
1668 repo.dirstate.beginparentchange()
1669 repo.setparents(repo['.'].node(), pother)
1669 repo.setparents(repo['.'].node(), pother)
1670 repo.dirstate.write(repo.currenttransaction())
1670 repo.dirstate.write(repo.currenttransaction())
1671 # fix up dirstate for copies and renames
1671 # fix up dirstate for copies and renames
1672 copies.duplicatecopies(repo, ctx.rev(), pctx.rev())
1672 copies.duplicatecopies(repo, ctx.rev(), pctx.rev())
1673 repo.dirstate.endparentchange()
1673 repo.dirstate.endparentchange()
1674 return stats
1674 return stats
@@ -1,454 +1,452 b''
1 #require symlink execbit
1 #require symlink execbit
2
2
3 $ tellmeabout() {
3 $ tellmeabout() {
4 > if [ -h $1 ]; then
4 > if [ -h $1 ]; then
5 > echo $1 is a symlink:
5 > echo $1 is a symlink:
6 > $TESTDIR/readlink.py $1
6 > $TESTDIR/readlink.py $1
7 > elif [ -x $1 ]; then
7 > elif [ -x $1 ]; then
8 > echo $1 is an executable file with content:
8 > echo $1 is an executable file with content:
9 > cat $1
9 > cat $1
10 > else
10 > else
11 > echo $1 is a plain file with content:
11 > echo $1 is a plain file with content:
12 > cat $1
12 > cat $1
13 > fi
13 > fi
14 > }
14 > }
15
15
16 $ hg init test1
16 $ hg init test1
17 $ cd test1
17 $ cd test1
18
18
19 $ echo a > a
19 $ echo a > a
20 $ hg ci -Aqmadd
20 $ hg ci -Aqmadd
21 $ chmod +x a
21 $ chmod +x a
22 $ hg ci -mexecutable
22 $ hg ci -mexecutable
23
23
24 $ hg up -q 0
24 $ hg up -q 0
25 $ rm a
25 $ rm a
26 $ ln -s symlink a
26 $ ln -s symlink a
27 $ hg ci -msymlink
27 $ hg ci -msymlink
28 created new head
28 created new head
29
29
30 Symlink is local parent, executable is other:
30 Symlink is local parent, executable is other:
31
31
32 $ hg merge --debug
32 $ hg merge --debug
33 searching for copies back to rev 1
33 searching for copies back to rev 1
34 resolving manifests
34 resolving manifests
35 branchmerge: True, force: False, partial: False
35 branchmerge: True, force: False, partial: False
36 ancestor: c334dc3be0da, local: 521a1e40188f+, remote: 3574f3e69b1c
36 ancestor: c334dc3be0da, local: 521a1e40188f+, remote: 3574f3e69b1c
37 preserving a for resolve of a
37 preserving a for resolve of a
38 a: versions differ -> m (premerge)
38 a: versions differ -> m (premerge)
39 picked tool ':merge' for a (binary False symlink True changedelete False)
39 picked tool ':merge' for a (binary False symlink True changedelete False)
40 merging a
40 merging a
41 my a@521a1e40188f+ other a@3574f3e69b1c ancestor a@c334dc3be0da
41 my a@521a1e40188f+ other a@3574f3e69b1c ancestor a@c334dc3be0da
42 warning: internal :merge cannot merge symlinks for a
42 warning: internal :merge cannot merge symlinks for a
43 warning: conflicts while merging a! (edit, then use 'hg resolve --mark')
43 warning: conflicts while merging a! (edit, then use 'hg resolve --mark')
44 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
44 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
45 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
45 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
46 [1]
46 [1]
47
47
48 $ tellmeabout a
48 $ tellmeabout a
49 a is a symlink:
49 a is a symlink:
50 a -> symlink
50 a -> symlink
51 $ hg resolve a --tool internal:other
51 $ hg resolve a --tool internal:other
52 (no more unresolved files)
52 (no more unresolved files)
53 $ tellmeabout a
53 $ tellmeabout a
54 a is an executable file with content:
54 a is an executable file with content:
55 a
55 a
56 $ hg st
56 $ hg st
57 M a
57 M a
58 ? a.orig
58 ? a.orig
59
59
60 Symlink is other parent, executable is local:
60 Symlink is other parent, executable is local:
61
61
62 $ hg update -C 1
62 $ hg update -C 1
63 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
63 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
64
64
65 $ hg merge --debug --tool :union
65 $ hg merge --debug --tool :union
66 searching for copies back to rev 1
66 searching for copies back to rev 1
67 resolving manifests
67 resolving manifests
68 branchmerge: True, force: False, partial: False
68 branchmerge: True, force: False, partial: False
69 ancestor: c334dc3be0da, local: 3574f3e69b1c+, remote: 521a1e40188f
69 ancestor: c334dc3be0da, local: 3574f3e69b1c+, remote: 521a1e40188f
70 preserving a for resolve of a
70 preserving a for resolve of a
71 a: versions differ -> m (premerge)
71 a: versions differ -> m (premerge)
72 picked tool ':union' for a (binary False symlink True changedelete False)
72 picked tool ':union' for a (binary False symlink True changedelete False)
73 merging a
73 merging a
74 my a@3574f3e69b1c+ other a@521a1e40188f ancestor a@c334dc3be0da
74 my a@3574f3e69b1c+ other a@521a1e40188f ancestor a@c334dc3be0da
75 warning: internal :union cannot merge symlinks for a
75 warning: internal :union cannot merge symlinks for a
76 warning: conflicts while merging a! (edit, then use 'hg resolve --mark')
76 warning: conflicts while merging a! (edit, then use 'hg resolve --mark')
77 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
77 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
78 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
78 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
79 [1]
79 [1]
80
80
81 $ tellmeabout a
81 $ tellmeabout a
82 a is an executable file with content:
82 a is an executable file with content:
83 a
83 a
84
84
85 $ hg update -C 1
85 $ hg update -C 1
86 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
86 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
87
87
88 $ hg merge --debug --tool :merge3
88 $ hg merge --debug --tool :merge3
89 searching for copies back to rev 1
89 searching for copies back to rev 1
90 resolving manifests
90 resolving manifests
91 branchmerge: True, force: False, partial: False
91 branchmerge: True, force: False, partial: False
92 ancestor: c334dc3be0da, local: 3574f3e69b1c+, remote: 521a1e40188f
92 ancestor: c334dc3be0da, local: 3574f3e69b1c+, remote: 521a1e40188f
93 preserving a for resolve of a
93 preserving a for resolve of a
94 a: versions differ -> m (premerge)
94 a: versions differ -> m (premerge)
95 picked tool ':merge3' for a (binary False symlink True changedelete False)
95 picked tool ':merge3' for a (binary False symlink True changedelete False)
96 merging a
96 merging a
97 my a@3574f3e69b1c+ other a@521a1e40188f ancestor a@c334dc3be0da
97 my a@3574f3e69b1c+ other a@521a1e40188f ancestor a@c334dc3be0da
98 warning: internal :merge3 cannot merge symlinks for a
98 warning: internal :merge3 cannot merge symlinks for a
99 warning: conflicts while merging a! (edit, then use 'hg resolve --mark')
99 warning: conflicts while merging a! (edit, then use 'hg resolve --mark')
100 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
100 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
101 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
101 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
102 [1]
102 [1]
103
103
104 $ tellmeabout a
104 $ tellmeabout a
105 a is an executable file with content:
105 a is an executable file with content:
106 a
106 a
107
107
108 $ hg update -C 1
108 $ hg update -C 1
109 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
109 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
110
110
111 $ hg merge --debug --tool :merge-local
111 $ hg merge --debug --tool :merge-local
112 searching for copies back to rev 1
112 searching for copies back to rev 1
113 resolving manifests
113 resolving manifests
114 branchmerge: True, force: False, partial: False
114 branchmerge: True, force: False, partial: False
115 ancestor: c334dc3be0da, local: 3574f3e69b1c+, remote: 521a1e40188f
115 ancestor: c334dc3be0da, local: 3574f3e69b1c+, remote: 521a1e40188f
116 preserving a for resolve of a
116 preserving a for resolve of a
117 a: versions differ -> m (premerge)
117 a: versions differ -> m (premerge)
118 picked tool ':merge-local' for a (binary False symlink True changedelete False)
118 picked tool ':merge-local' for a (binary False symlink True changedelete False)
119 merging a
119 merging a
120 my a@3574f3e69b1c+ other a@521a1e40188f ancestor a@c334dc3be0da
120 my a@3574f3e69b1c+ other a@521a1e40188f ancestor a@c334dc3be0da
121 warning: internal :merge-local cannot merge symlinks for a
121 warning: internal :merge-local cannot merge symlinks for a
122 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
122 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
123 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
123 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
124 [1]
124 [1]
125
125
126 $ tellmeabout a
126 $ tellmeabout a
127 a is an executable file with content:
127 a is an executable file with content:
128 a
128 a
129
129
130 $ hg update -C 1
130 $ hg update -C 1
131 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
131 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
132
132
133 $ hg merge --debug --tool :merge-other
133 $ hg merge --debug --tool :merge-other
134 searching for copies back to rev 1
134 searching for copies back to rev 1
135 resolving manifests
135 resolving manifests
136 branchmerge: True, force: False, partial: False
136 branchmerge: True, force: False, partial: False
137 ancestor: c334dc3be0da, local: 3574f3e69b1c+, remote: 521a1e40188f
137 ancestor: c334dc3be0da, local: 3574f3e69b1c+, remote: 521a1e40188f
138 preserving a for resolve of a
138 preserving a for resolve of a
139 a: versions differ -> m (premerge)
139 a: versions differ -> m (premerge)
140 picked tool ':merge-other' for a (binary False symlink True changedelete False)
140 picked tool ':merge-other' for a (binary False symlink True changedelete False)
141 merging a
141 merging a
142 my a@3574f3e69b1c+ other a@521a1e40188f ancestor a@c334dc3be0da
142 my a@3574f3e69b1c+ other a@521a1e40188f ancestor a@c334dc3be0da
143 warning: internal :merge-other cannot merge symlinks for a
143 warning: internal :merge-other cannot merge symlinks for a
144 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
144 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
145 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
145 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
146 [1]
146 [1]
147
147
148 $ tellmeabout a
148 $ tellmeabout a
149 a is an executable file with content:
149 a is an executable file with content:
150 a
150 a
151
151
152 Update to link without local change should get us a symlink (issue3316):
152 Update to link without local change should get us a symlink (issue3316):
153
153
154 $ hg up -C 0
154 $ hg up -C 0
155 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
155 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
156 $ hg up
156 $ hg up
157 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
157 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
158 1 other heads for branch "default"
158 1 other heads for branch "default"
159 $ hg st
159 $ hg st
160 ? a.orig
160 ? a.orig
161
161
162 Update to link with local change should cause a merge prompt (issue3200):
162 Update to link with local change should cause a merge prompt (issue3200):
163
163
164 $ hg up -Cq 0
164 $ hg up -Cq 0
165 $ echo data > a
165 $ echo data > a
166 $ HGMERGE= hg up -y --debug
166 $ HGMERGE= hg up -y --debug
167 searching for copies back to rev 2
167 searching for copies back to rev 2
168 resolving manifests
168 resolving manifests
169 branchmerge: False, force: False, partial: False
169 branchmerge: False, force: False, partial: False
170 ancestor: c334dc3be0da, local: c334dc3be0da+, remote: 521a1e40188f
170 ancestor: c334dc3be0da, local: c334dc3be0da+, remote: 521a1e40188f
171 preserving a for resolve of a
171 preserving a for resolve of a
172 a: versions differ -> m (premerge)
172 a: versions differ -> m (premerge)
173 (couldn't find merge tool hgmerge|tool hgmerge can't handle symlinks) (re)
173 (couldn't find merge tool hgmerge|tool hgmerge can't handle symlinks) (re)
174 picked tool ':prompt' for a (binary False symlink True changedelete False)
174 picked tool ':prompt' for a (binary False symlink True changedelete False)
175 no tool found to merge a
175 no tool found to merge a
176 keep (l)ocal [working copy], take (o)ther [destination], or leave (u)nresolved? u
176 keep (l)ocal [working copy], take (o)ther [destination], or leave (u)nresolved? u
177 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
177 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
178 use 'hg resolve' to retry unresolved file merges
178 use 'hg resolve' to retry unresolved file merges
179 1 other heads for branch "default"
179 1 other heads for branch "default"
180 [1]
180 [1]
181 $ hg diff --git
181 $ hg diff --git
182 diff --git a/a b/a
182 diff --git a/a b/a
183 old mode 120000
183 old mode 120000
184 new mode 100644
184 new mode 100644
185 --- a/a
185 --- a/a
186 +++ b/a
186 +++ b/a
187 @@ -1,1 +1,1 @@
187 @@ -1,1 +1,1 @@
188 -symlink
188 -symlink
189 \ No newline at end of file
189 \ No newline at end of file
190 +data
190 +data
191
191
192
192
193 Test only 'l' change - happens rarely, except when recovering from situations
193 Test only 'l' change - happens rarely, except when recovering from situations
194 where that was what happened.
194 where that was what happened.
195
195
196 $ hg init test2
196 $ hg init test2
197 $ cd test2
197 $ cd test2
198 $ printf base > f
198 $ printf base > f
199 $ hg ci -Aqm0
199 $ hg ci -Aqm0
200 $ echo file > f
200 $ echo file > f
201 $ echo content >> f
201 $ echo content >> f
202 $ hg ci -qm1
202 $ hg ci -qm1
203 $ hg up -qr0
203 $ hg up -qr0
204 $ rm f
204 $ rm f
205 $ ln -s base f
205 $ ln -s base f
206 $ hg ci -qm2
206 $ hg ci -qm2
207 $ hg merge
207 $ hg merge
208 merging f
208 merging f
209 warning: internal :merge cannot merge symlinks for f
209 warning: internal :merge cannot merge symlinks for f
210 warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
210 warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
211 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
211 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
212 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
212 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
213 [1]
213 [1]
214 $ tellmeabout f
214 $ tellmeabout f
215 f is a symlink:
215 f is a symlink:
216 f -> base
216 f -> base
217
217
218 $ hg up -Cqr1
218 $ hg up -Cqr1
219 $ hg merge
219 $ hg merge
220 merging f
220 merging f
221 warning: internal :merge cannot merge symlinks for f
221 warning: internal :merge cannot merge symlinks for f
222 warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
222 warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
223 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
223 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
224 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
224 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
225 [1]
225 [1]
226 $ tellmeabout f
226 $ tellmeabout f
227 f is a plain file with content:
227 f is a plain file with content:
228 file
228 file
229 content
229 content
230
230
231 $ cd ..
231 $ cd ..
232
232
233 Test removed 'x' flag merged with change to symlink
233 Test removed 'x' flag merged with change to symlink
234
234
235 $ hg init test3
235 $ hg init test3
236 $ cd test3
236 $ cd test3
237 $ echo f > f
237 $ echo f > f
238 $ chmod +x f
238 $ chmod +x f
239 $ hg ci -Aqm0
239 $ hg ci -Aqm0
240 $ chmod -x f
240 $ chmod -x f
241 $ hg ci -qm1
241 $ hg ci -qm1
242 $ hg up -qr0
242 $ hg up -qr0
243 $ rm f
243 $ rm f
244 $ ln -s dangling f
244 $ ln -s dangling f
245 $ hg ci -qm2
245 $ hg ci -qm2
246 $ hg merge
246 $ hg merge
247 merging f
247 merging f
248 warning: internal :merge cannot merge symlinks for f
248 warning: internal :merge cannot merge symlinks for f
249 warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
249 warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
250 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
250 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
251 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
251 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
252 [1]
252 [1]
253 $ tellmeabout f
253 $ tellmeabout f
254 f is a symlink:
254 f is a symlink:
255 f -> dangling
255 f -> dangling
256
256
257 $ hg up -Cqr1
257 $ hg up -Cqr1
258 $ hg merge
258 $ hg merge
259 merging f
259 merging f
260 warning: internal :merge cannot merge symlinks for f
260 warning: internal :merge cannot merge symlinks for f
261 warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
261 warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
262 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
262 0 files updated, 0 files merged, 0 files removed, 1 files unresolved
263 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
263 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
264 [1]
264 [1]
265 $ tellmeabout f
265 $ tellmeabout f
266 f is a plain file with content:
266 f is a plain file with content:
267 f
267 f
268
268
269 Test removed 'x' flag merged with content change - both ways
269 Test removed 'x' flag merged with content change - both ways
270
270
271 $ hg up -Cqr0
271 $ hg up -Cqr0
272 $ echo change > f
272 $ echo change > f
273 $ hg ci -qm3
273 $ hg ci -qm3
274 $ hg merge -r1
274 $ hg merge -r1
275 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
275 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
276 (branch merge, don't forget to commit)
276 (branch merge, don't forget to commit)
277 $ tellmeabout f
277 $ tellmeabout f
278 f is a plain file with content:
278 f is a plain file with content:
279 change
279 change
280
280
281 $ hg up -qCr1
281 $ hg up -qCr1
282 $ hg merge -r3
282 $ hg merge -r3
283 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
283 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
284 (branch merge, don't forget to commit)
284 (branch merge, don't forget to commit)
285 $ tellmeabout f
285 $ tellmeabout f
286 f is a plain file with content:
286 f is a plain file with content:
287 change
287 change
288
288
289 $ cd ..
289 $ cd ..
290
290
291 Test merge with no common ancestor:
291 Test merge with no common ancestor:
292 a: just different
292 a: just different
293 b: x vs -, different (cannot calculate x, cannot ask merge tool)
293 b: x vs -, different (cannot calculate x, cannot ask merge tool)
294 c: x vs -, same (cannot calculate x, merge tool is no good)
294 c: x vs -, same (cannot calculate x, merge tool is no good)
295 d: x vs l, different
295 d: x vs l, different
296 e: x vs l, same
296 e: x vs l, same
297 f: - vs l, different
297 f: - vs l, different
298 g: - vs l, same
298 g: - vs l, same
299 h: l vs l, different
299 h: l vs l, different
300 (where same means the filelog entry is shared and there thus is an ancestor!)
300 (where same means the filelog entry is shared and there thus is an ancestor!)
301
301
302 $ hg init test4
302 $ hg init test4
303 $ cd test4
303 $ cd test4
304 $ echo 0 > 0
304 $ echo 0 > 0
305 $ hg ci -Aqm0
305 $ hg ci -Aqm0
306
306
307 $ echo 1 > a
307 $ echo 1 > a
308 $ echo 1 > b
308 $ echo 1 > b
309 $ chmod +x b
309 $ chmod +x b
310 $ echo 1 > bx
310 $ echo 1 > bx
311 $ chmod +x bx
311 $ chmod +x bx
312 $ echo x > c
312 $ echo x > c
313 $ chmod +x c
313 $ chmod +x c
314 $ echo 1 > d
314 $ echo 1 > d
315 $ chmod +x d
315 $ chmod +x d
316 $ printf x > e
316 $ printf x > e
317 $ chmod +x e
317 $ chmod +x e
318 $ echo 1 > f
318 $ echo 1 > f
319 $ printf x > g
319 $ printf x > g
320 $ ln -s 1 h
320 $ ln -s 1 h
321 $ hg ci -qAm1
321 $ hg ci -qAm1
322
322
323 $ hg up -qr0
323 $ hg up -qr0
324 $ echo 2 > a
324 $ echo 2 > a
325 $ echo 2 > b
325 $ echo 2 > b
326 $ echo 2 > bx
326 $ echo 2 > bx
327 $ chmod +x bx
327 $ chmod +x bx
328 $ echo x > c
328 $ echo x > c
329 $ ln -s 2 d
329 $ ln -s 2 d
330 $ ln -s x e
330 $ ln -s x e
331 $ ln -s 2 f
331 $ ln -s 2 f
332 $ ln -s x g
332 $ ln -s x g
333 $ ln -s 2 h
333 $ ln -s 2 h
334 $ hg ci -Aqm2
334 $ hg ci -Aqm2
335
335
336 $ hg merge
336 $ hg merge
337 merging a
337 merging a
338 warning: cannot merge flags for b
338 warning: cannot merge flags for b
339 merging b
339 merging b
340 warning: cannot merge flags for bx
341 merging bx
340 merging bx
342 warning: cannot merge flags for c
341 warning: cannot merge flags for c
343 merging d
342 merging d
344 warning: internal :merge cannot merge symlinks for d
343 warning: internal :merge cannot merge symlinks for d
345 warning: conflicts while merging d! (edit, then use 'hg resolve --mark')
344 warning: conflicts while merging d! (edit, then use 'hg resolve --mark')
346 merging f
345 merging f
347 warning: internal :merge cannot merge symlinks for f
346 warning: internal :merge cannot merge symlinks for f
348 warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
347 warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
349 merging h
348 merging h
350 warning: internal :merge cannot merge symlinks for h
349 warning: internal :merge cannot merge symlinks for h
351 warning: conflicts while merging h! (edit, then use 'hg resolve --mark')
350 warning: conflicts while merging h! (edit, then use 'hg resolve --mark')
352 warning: conflicts while merging a! (edit, then use 'hg resolve --mark')
351 warning: conflicts while merging a! (edit, then use 'hg resolve --mark')
353 warning: conflicts while merging b! (edit, then use 'hg resolve --mark')
352 warning: conflicts while merging b! (edit, then use 'hg resolve --mark')
354 warning: conflicts while merging bx! (edit, then use 'hg resolve --mark')
353 warning: conflicts while merging bx! (edit, then use 'hg resolve --mark')
355 3 files updated, 0 files merged, 0 files removed, 6 files unresolved
354 3 files updated, 0 files merged, 0 files removed, 6 files unresolved
356 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
355 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
357 [1]
356 [1]
358 $ hg resolve -l
357 $ hg resolve -l
359 U a
358 U a
360 U b
359 U b
361 U bx
360 U bx
362 U d
361 U d
363 U f
362 U f
364 U h
363 U h
365 $ tellmeabout a
364 $ tellmeabout a
366 a is a plain file with content:
365 a is a plain file with content:
367 <<<<<<< working copy: 0c617753b41b - test: 2
366 <<<<<<< working copy: 0c617753b41b - test: 2
368 2
367 2
369 =======
368 =======
370 1
369 1
371 >>>>>>> merge rev: 2e60aa20b912 - test: 1
370 >>>>>>> merge rev: 2e60aa20b912 - test: 1
372 $ tellmeabout b
371 $ tellmeabout b
373 b is a plain file with content:
372 b is a plain file with content:
374 <<<<<<< working copy: 0c617753b41b - test: 2
373 <<<<<<< working copy: 0c617753b41b - test: 2
375 2
374 2
376 =======
375 =======
377 1
376 1
378 >>>>>>> merge rev: 2e60aa20b912 - test: 1
377 >>>>>>> merge rev: 2e60aa20b912 - test: 1
379 $ tellmeabout c
378 $ tellmeabout c
380 c is a plain file with content:
379 c is a plain file with content:
381 x
380 x
382 $ tellmeabout d
381 $ tellmeabout d
383 d is a symlink:
382 d is a symlink:
384 d -> 2
383 d -> 2
385 $ tellmeabout e
384 $ tellmeabout e
386 e is a symlink:
385 e is a symlink:
387 e -> x
386 e -> x
388 $ tellmeabout f
387 $ tellmeabout f
389 f is a symlink:
388 f is a symlink:
390 f -> 2
389 f -> 2
391 $ tellmeabout g
390 $ tellmeabout g
392 g is a symlink:
391 g is a symlink:
393 g -> x
392 g -> x
394 $ tellmeabout h
393 $ tellmeabout h
395 h is a symlink:
394 h is a symlink:
396 h -> 2
395 h -> 2
397
396
398 $ hg up -Cqr1
397 $ hg up -Cqr1
399 $ hg merge
398 $ hg merge
400 merging a
399 merging a
401 warning: cannot merge flags for b
400 warning: cannot merge flags for b
402 merging b
401 merging b
403 warning: cannot merge flags for bx
404 merging bx
402 merging bx
405 warning: cannot merge flags for c
403 warning: cannot merge flags for c
406 merging d
404 merging d
407 warning: internal :merge cannot merge symlinks for d
405 warning: internal :merge cannot merge symlinks for d
408 warning: conflicts while merging d! (edit, then use 'hg resolve --mark')
406 warning: conflicts while merging d! (edit, then use 'hg resolve --mark')
409 merging f
407 merging f
410 warning: internal :merge cannot merge symlinks for f
408 warning: internal :merge cannot merge symlinks for f
411 warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
409 warning: conflicts while merging f! (edit, then use 'hg resolve --mark')
412 merging h
410 merging h
413 warning: internal :merge cannot merge symlinks for h
411 warning: internal :merge cannot merge symlinks for h
414 warning: conflicts while merging h! (edit, then use 'hg resolve --mark')
412 warning: conflicts while merging h! (edit, then use 'hg resolve --mark')
415 warning: conflicts while merging a! (edit, then use 'hg resolve --mark')
413 warning: conflicts while merging a! (edit, then use 'hg resolve --mark')
416 warning: conflicts while merging b! (edit, then use 'hg resolve --mark')
414 warning: conflicts while merging b! (edit, then use 'hg resolve --mark')
417 warning: conflicts while merging bx! (edit, then use 'hg resolve --mark')
415 warning: conflicts while merging bx! (edit, then use 'hg resolve --mark')
418 3 files updated, 0 files merged, 0 files removed, 6 files unresolved
416 3 files updated, 0 files merged, 0 files removed, 6 files unresolved
419 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
417 use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to abandon
420 [1]
418 [1]
421 $ tellmeabout a
419 $ tellmeabout a
422 a is a plain file with content:
420 a is a plain file with content:
423 <<<<<<< working copy: 2e60aa20b912 - test: 1
421 <<<<<<< working copy: 2e60aa20b912 - test: 1
424 1
422 1
425 =======
423 =======
426 2
424 2
427 >>>>>>> merge rev: 0c617753b41b - test: 2
425 >>>>>>> merge rev: 0c617753b41b - test: 2
428 $ tellmeabout b
426 $ tellmeabout b
429 b is an executable file with content:
427 b is an executable file with content:
430 <<<<<<< working copy: 2e60aa20b912 - test: 1
428 <<<<<<< working copy: 2e60aa20b912 - test: 1
431 1
429 1
432 =======
430 =======
433 2
431 2
434 >>>>>>> merge rev: 0c617753b41b - test: 2
432 >>>>>>> merge rev: 0c617753b41b - test: 2
435 $ tellmeabout c
433 $ tellmeabout c
436 c is an executable file with content:
434 c is an executable file with content:
437 x
435 x
438 $ tellmeabout d
436 $ tellmeabout d
439 d is an executable file with content:
437 d is an executable file with content:
440 1
438 1
441 $ tellmeabout e
439 $ tellmeabout e
442 e is an executable file with content:
440 e is an executable file with content:
443 x (no-eol)
441 x (no-eol)
444 $ tellmeabout f
442 $ tellmeabout f
445 f is a plain file with content:
443 f is a plain file with content:
446 1
444 1
447 $ tellmeabout g
445 $ tellmeabout g
448 g is a plain file with content:
446 g is a plain file with content:
449 x (no-eol)
447 x (no-eol)
450 $ tellmeabout h
448 $ tellmeabout h
451 h is a symlink:
449 h is a symlink:
452 h -> 1
450 h -> 1
453
451
454 $ cd ..
452 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now