Show More
@@ -1,932 +1,932 | |||
|
1 | 1 | # scmutil.py - Mercurial core utility functions |
|
2 | 2 | # |
|
3 | 3 | # Copyright Matt Mackall <mpm@selenic.com> |
|
4 | 4 | # |
|
5 | 5 | # This software may be used and distributed according to the terms of the |
|
6 | 6 | # GNU General Public License version 2 or any later version. |
|
7 | 7 | |
|
8 | 8 | from i18n import _ |
|
9 | 9 | from mercurial.node import nullrev |
|
10 | 10 | import util, error, osutil, revset, similar, encoding, phases, parsers |
|
11 | 11 | import pathutil |
|
12 | 12 | import match as matchmod |
|
13 | 13 | import os, errno, re, glob |
|
14 | 14 | |
|
15 | 15 | if os.name == 'nt': |
|
16 | 16 | import scmwindows as scmplatform |
|
17 | 17 | else: |
|
18 | 18 | import scmposix as scmplatform |
|
19 | 19 | |
|
20 | 20 | systemrcpath = scmplatform.systemrcpath |
|
21 | 21 | userrcpath = scmplatform.userrcpath |
|
22 | 22 | |
|
23 | 23 | def itersubrepos(ctx1, ctx2): |
|
24 | 24 | """find subrepos in ctx1 or ctx2""" |
|
25 | 25 | # Create a (subpath, ctx) mapping where we prefer subpaths from |
|
26 | 26 | # ctx1. The subpaths from ctx2 are important when the .hgsub file |
|
27 | 27 | # has been modified (in ctx2) but not yet committed (in ctx1). |
|
28 | 28 | subpaths = dict.fromkeys(ctx2.substate, ctx2) |
|
29 | 29 | subpaths.update(dict.fromkeys(ctx1.substate, ctx1)) |
|
30 | 30 | for subpath, ctx in sorted(subpaths.iteritems()): |
|
31 | 31 | yield subpath, ctx.sub(subpath) |
|
32 | 32 | |
|
33 | 33 | def nochangesfound(ui, repo, excluded=None): |
|
34 | 34 | '''Report no changes for push/pull, excluded is None or a list of |
|
35 | 35 | nodes excluded from the push/pull. |
|
36 | 36 | ''' |
|
37 | 37 | secretlist = [] |
|
38 | 38 | if excluded: |
|
39 | 39 | for n in excluded: |
|
40 | 40 | if n not in repo: |
|
41 | 41 | # discovery should not have included the filtered revision, |
|
42 | 42 | # we have to explicitly exclude it until discovery is cleanup. |
|
43 | 43 | continue |
|
44 | 44 | ctx = repo[n] |
|
45 | 45 | if ctx.phase() >= phases.secret and not ctx.extinct(): |
|
46 | 46 | secretlist.append(n) |
|
47 | 47 | |
|
48 | 48 | if secretlist: |
|
49 | 49 | ui.status(_("no changes found (ignored %d secret changesets)\n") |
|
50 | 50 | % len(secretlist)) |
|
51 | 51 | else: |
|
52 | 52 | ui.status(_("no changes found\n")) |
|
53 | 53 | |
|
54 | 54 | def checknewlabel(repo, lbl, kind): |
|
55 | 55 | # Do not use the "kind" parameter in ui output. |
|
56 | 56 | # It makes strings difficult to translate. |
|
57 | 57 | if lbl in ['tip', '.', 'null']: |
|
58 | 58 | raise util.Abort(_("the name '%s' is reserved") % lbl) |
|
59 | 59 | for c in (':', '\0', '\n', '\r'): |
|
60 | 60 | if c in lbl: |
|
61 | 61 | raise util.Abort(_("%r cannot be used in a name") % c) |
|
62 | 62 | try: |
|
63 | 63 | int(lbl) |
|
64 | 64 | raise util.Abort(_("cannot use an integer as a name")) |
|
65 | 65 | except ValueError: |
|
66 | 66 | pass |
|
67 | 67 | |
|
68 | 68 | def checkfilename(f): |
|
69 | 69 | '''Check that the filename f is an acceptable filename for a tracked file''' |
|
70 | 70 | if '\r' in f or '\n' in f: |
|
71 | 71 | raise util.Abort(_("'\\n' and '\\r' disallowed in filenames: %r") % f) |
|
72 | 72 | |
|
73 | 73 | def checkportable(ui, f): |
|
74 | 74 | '''Check if filename f is portable and warn or abort depending on config''' |
|
75 | 75 | checkfilename(f) |
|
76 | 76 | abort, warn = checkportabilityalert(ui) |
|
77 | 77 | if abort or warn: |
|
78 | 78 | msg = util.checkwinfilename(f) |
|
79 | 79 | if msg: |
|
80 | 80 | msg = "%s: %r" % (msg, f) |
|
81 | 81 | if abort: |
|
82 | 82 | raise util.Abort(msg) |
|
83 | 83 | ui.warn(_("warning: %s\n") % msg) |
|
84 | 84 | |
|
85 | 85 | def checkportabilityalert(ui): |
|
86 | 86 | '''check if the user's config requests nothing, a warning, or abort for |
|
87 | 87 | non-portable filenames''' |
|
88 | 88 | val = ui.config('ui', 'portablefilenames', 'warn') |
|
89 | 89 | lval = val.lower() |
|
90 | 90 | bval = util.parsebool(val) |
|
91 | 91 | abort = os.name == 'nt' or lval == 'abort' |
|
92 | 92 | warn = bval or lval == 'warn' |
|
93 | 93 | if bval is None and not (warn or abort or lval == 'ignore'): |
|
94 | 94 | raise error.ConfigError( |
|
95 | 95 | _("ui.portablefilenames value is invalid ('%s')") % val) |
|
96 | 96 | return abort, warn |
|
97 | 97 | |
|
98 | 98 | class casecollisionauditor(object): |
|
99 | 99 | def __init__(self, ui, abort, dirstate): |
|
100 | 100 | self._ui = ui |
|
101 | 101 | self._abort = abort |
|
102 | 102 | allfiles = '\0'.join(dirstate._map) |
|
103 | 103 | self._loweredfiles = set(encoding.lower(allfiles).split('\0')) |
|
104 | 104 | self._dirstate = dirstate |
|
105 | 105 | # The purpose of _newfiles is so that we don't complain about |
|
106 | 106 | # case collisions if someone were to call this object with the |
|
107 | 107 | # same filename twice. |
|
108 | 108 | self._newfiles = set() |
|
109 | 109 | |
|
110 | 110 | def __call__(self, f): |
|
111 | 111 | if f in self._newfiles: |
|
112 | 112 | return |
|
113 | 113 | fl = encoding.lower(f) |
|
114 | 114 | if fl in self._loweredfiles and f not in self._dirstate: |
|
115 | 115 | msg = _('possible case-folding collision for %s') % f |
|
116 | 116 | if self._abort: |
|
117 | 117 | raise util.Abort(msg) |
|
118 | 118 | self._ui.warn(_("warning: %s\n") % msg) |
|
119 | 119 | self._loweredfiles.add(fl) |
|
120 | 120 | self._newfiles.add(f) |
|
121 | 121 | |
|
122 | 122 | class abstractvfs(object): |
|
123 | 123 | """Abstract base class; cannot be instantiated""" |
|
124 | 124 | |
|
125 | 125 | def __init__(self, *args, **kwargs): |
|
126 | 126 | '''Prevent instantiation; don't call this from subclasses.''' |
|
127 | 127 | raise NotImplementedError('attempted instantiating ' + str(type(self))) |
|
128 | 128 | |
|
129 | 129 | def tryread(self, path): |
|
130 | 130 | '''gracefully return an empty string for missing files''' |
|
131 | 131 | try: |
|
132 | 132 | return self.read(path) |
|
133 | 133 | except IOError, inst: |
|
134 | 134 | if inst.errno != errno.ENOENT: |
|
135 | 135 | raise |
|
136 | 136 | return "" |
|
137 | 137 | |
|
138 | 138 | def open(self, path, mode="r", text=False, atomictemp=False): |
|
139 | 139 | self.open = self.__call__ |
|
140 | 140 | return self.__call__(path, mode, text, atomictemp) |
|
141 | 141 | |
|
142 | 142 | def read(self, path): |
|
143 | 143 | fp = self(path, 'rb') |
|
144 | 144 | try: |
|
145 | 145 | return fp.read() |
|
146 | 146 | finally: |
|
147 | 147 | fp.close() |
|
148 | 148 | |
|
149 | 149 | def write(self, path, data): |
|
150 | 150 | fp = self(path, 'wb') |
|
151 | 151 | try: |
|
152 | 152 | return fp.write(data) |
|
153 | 153 | finally: |
|
154 | 154 | fp.close() |
|
155 | 155 | |
|
156 | 156 | def append(self, path, data): |
|
157 | 157 | fp = self(path, 'ab') |
|
158 | 158 | try: |
|
159 | 159 | return fp.write(data) |
|
160 | 160 | finally: |
|
161 | 161 | fp.close() |
|
162 | 162 | |
|
163 | 163 | def chmod(self, path, mode): |
|
164 | 164 | return os.chmod(self.join(path), mode) |
|
165 | 165 | |
|
166 | 166 | def exists(self, path=None): |
|
167 | 167 | return os.path.exists(self.join(path)) |
|
168 | 168 | |
|
169 | 169 | def fstat(self, fp): |
|
170 | 170 | return util.fstat(fp) |
|
171 | 171 | |
|
172 | 172 | def isdir(self, path=None): |
|
173 | 173 | return os.path.isdir(self.join(path)) |
|
174 | 174 | |
|
175 | 175 | def isfile(self, path=None): |
|
176 | 176 | return os.path.isfile(self.join(path)) |
|
177 | 177 | |
|
178 | 178 | def islink(self, path=None): |
|
179 | 179 | return os.path.islink(self.join(path)) |
|
180 | 180 | |
|
181 | 181 | def lstat(self, path=None): |
|
182 | 182 | return os.lstat(self.join(path)) |
|
183 | 183 | |
|
184 | 184 | def makedir(self, path=None, notindexed=True): |
|
185 | 185 | return util.makedir(self.join(path), notindexed) |
|
186 | 186 | |
|
187 | 187 | def makedirs(self, path=None, mode=None): |
|
188 | 188 | return util.makedirs(self.join(path), mode) |
|
189 | 189 | |
|
190 | 190 | def makelock(self, info, path): |
|
191 | 191 | return util.makelock(info, self.join(path)) |
|
192 | 192 | |
|
193 | 193 | def mkdir(self, path=None): |
|
194 | 194 | return os.mkdir(self.join(path)) |
|
195 | 195 | |
|
196 | 196 | def readdir(self, path=None, stat=None, skip=None): |
|
197 | 197 | return osutil.listdir(self.join(path), stat, skip) |
|
198 | 198 | |
|
199 | 199 | def readlock(self, path): |
|
200 | 200 | return util.readlock(self.join(path)) |
|
201 | 201 | |
|
202 | 202 | def rename(self, src, dst): |
|
203 | 203 | return util.rename(self.join(src), self.join(dst)) |
|
204 | 204 | |
|
205 | 205 | def readlink(self, path): |
|
206 | 206 | return os.readlink(self.join(path)) |
|
207 | 207 | |
|
208 | 208 | def setflags(self, path, l, x): |
|
209 | 209 | return util.setflags(self.join(path), l, x) |
|
210 | 210 | |
|
211 | 211 | def stat(self, path=None): |
|
212 | 212 | return os.stat(self.join(path)) |
|
213 | 213 | |
|
214 | 214 | def unlink(self, path=None): |
|
215 | 215 | return util.unlink(self.join(path)) |
|
216 | 216 | |
|
217 | 217 | def utime(self, path=None, t=None): |
|
218 | 218 | return os.utime(self.join(path), t) |
|
219 | 219 | |
|
220 | 220 | class vfs(abstractvfs): |
|
221 | 221 | '''Operate files relative to a base directory |
|
222 | 222 | |
|
223 | 223 | This class is used to hide the details of COW semantics and |
|
224 | 224 | remote file access from higher level code. |
|
225 | 225 | ''' |
|
226 | 226 | def __init__(self, base, audit=True, expandpath=False, realpath=False): |
|
227 | 227 | if expandpath: |
|
228 | 228 | base = util.expandpath(base) |
|
229 | 229 | if realpath: |
|
230 | 230 | base = os.path.realpath(base) |
|
231 | 231 | self.base = base |
|
232 | 232 | self._setmustaudit(audit) |
|
233 | 233 | self.createmode = None |
|
234 | 234 | self._trustnlink = None |
|
235 | 235 | |
|
236 | 236 | def _getmustaudit(self): |
|
237 | 237 | return self._audit |
|
238 | 238 | |
|
239 | 239 | def _setmustaudit(self, onoff): |
|
240 | 240 | self._audit = onoff |
|
241 | 241 | if onoff: |
|
242 | 242 | self.audit = pathutil.pathauditor(self.base) |
|
243 | 243 | else: |
|
244 | 244 | self.audit = util.always |
|
245 | 245 | |
|
246 | 246 | mustaudit = property(_getmustaudit, _setmustaudit) |
|
247 | 247 | |
|
248 | 248 | @util.propertycache |
|
249 | 249 | def _cansymlink(self): |
|
250 | 250 | return util.checklink(self.base) |
|
251 | 251 | |
|
252 | 252 | @util.propertycache |
|
253 | 253 | def _chmod(self): |
|
254 | 254 | return util.checkexec(self.base) |
|
255 | 255 | |
|
256 | 256 | def _fixfilemode(self, name): |
|
257 | 257 | if self.createmode is None or not self._chmod: |
|
258 | 258 | return |
|
259 | 259 | os.chmod(name, self.createmode & 0666) |
|
260 | 260 | |
|
261 | 261 | def __call__(self, path, mode="r", text=False, atomictemp=False): |
|
262 | 262 | if self._audit: |
|
263 | 263 | r = util.checkosfilename(path) |
|
264 | 264 | if r: |
|
265 | 265 | raise util.Abort("%s: %r" % (r, path)) |
|
266 | 266 | self.audit(path) |
|
267 | 267 | f = self.join(path) |
|
268 | 268 | |
|
269 | 269 | if not text and "b" not in mode: |
|
270 | 270 | mode += "b" # for that other OS |
|
271 | 271 | |
|
272 | 272 | nlink = -1 |
|
273 | 273 | if mode not in ('r', 'rb'): |
|
274 | 274 | dirname, basename = util.split(f) |
|
275 | 275 | # If basename is empty, then the path is malformed because it points |
|
276 | 276 | # to a directory. Let the posixfile() call below raise IOError. |
|
277 | 277 | if basename: |
|
278 | 278 | if atomictemp: |
|
279 | 279 | util.ensuredirs(dirname, self.createmode) |
|
280 | 280 | return util.atomictempfile(f, mode, self.createmode) |
|
281 | 281 | try: |
|
282 | 282 | if 'w' in mode: |
|
283 | 283 | util.unlink(f) |
|
284 | 284 | nlink = 0 |
|
285 | 285 | else: |
|
286 | 286 | # nlinks() may behave differently for files on Windows |
|
287 | 287 | # shares if the file is open. |
|
288 | 288 | fd = util.posixfile(f) |
|
289 | 289 | nlink = util.nlinks(f) |
|
290 | 290 | if nlink < 1: |
|
291 | 291 | nlink = 2 # force mktempcopy (issue1922) |
|
292 | 292 | fd.close() |
|
293 | 293 | except (OSError, IOError), e: |
|
294 | 294 | if e.errno != errno.ENOENT: |
|
295 | 295 | raise |
|
296 | 296 | nlink = 0 |
|
297 | 297 | util.ensuredirs(dirname, self.createmode) |
|
298 | 298 | if nlink > 0: |
|
299 | 299 | if self._trustnlink is None: |
|
300 | 300 | self._trustnlink = nlink > 1 or util.checknlink(f) |
|
301 | 301 | if nlink > 1 or not self._trustnlink: |
|
302 | 302 | util.rename(util.mktempcopy(f), f) |
|
303 | 303 | fp = util.posixfile(f, mode) |
|
304 | 304 | if nlink == 0: |
|
305 | 305 | self._fixfilemode(f) |
|
306 | 306 | return fp |
|
307 | 307 | |
|
308 | 308 | def symlink(self, src, dst): |
|
309 | 309 | self.audit(dst) |
|
310 | 310 | linkname = self.join(dst) |
|
311 | 311 | try: |
|
312 | 312 | os.unlink(linkname) |
|
313 | 313 | except OSError: |
|
314 | 314 | pass |
|
315 | 315 | |
|
316 | 316 | util.ensuredirs(os.path.dirname(linkname), self.createmode) |
|
317 | 317 | |
|
318 | 318 | if self._cansymlink: |
|
319 | 319 | try: |
|
320 | 320 | os.symlink(src, linkname) |
|
321 | 321 | except OSError, err: |
|
322 | 322 | raise OSError(err.errno, _('could not symlink to %r: %s') % |
|
323 | 323 | (src, err.strerror), linkname) |
|
324 | 324 | else: |
|
325 | 325 | self.write(dst, src) |
|
326 | 326 | |
|
327 | 327 | def join(self, path): |
|
328 | 328 | if path: |
|
329 | 329 | return os.path.join(self.base, path) |
|
330 | 330 | else: |
|
331 | 331 | return self.base |
|
332 | 332 | |
|
333 | 333 | opener = vfs |
|
334 | 334 | |
|
335 | 335 | class auditvfs(object): |
|
336 | 336 | def __init__(self, vfs): |
|
337 | 337 | self.vfs = vfs |
|
338 | 338 | |
|
339 | 339 | def _getmustaudit(self): |
|
340 | 340 | return self.vfs.mustaudit |
|
341 | 341 | |
|
342 | 342 | def _setmustaudit(self, onoff): |
|
343 | 343 | self.vfs.mustaudit = onoff |
|
344 | 344 | |
|
345 | 345 | mustaudit = property(_getmustaudit, _setmustaudit) |
|
346 | 346 | |
|
347 | 347 | class filtervfs(abstractvfs, auditvfs): |
|
348 | 348 | '''Wrapper vfs for filtering filenames with a function.''' |
|
349 | 349 | |
|
350 | 350 | def __init__(self, vfs, filter): |
|
351 | 351 | auditvfs.__init__(self, vfs) |
|
352 | 352 | self._filter = filter |
|
353 | 353 | |
|
354 | 354 | def __call__(self, path, *args, **kwargs): |
|
355 | 355 | return self.vfs(self._filter(path), *args, **kwargs) |
|
356 | 356 | |
|
357 | 357 | def join(self, path): |
|
358 | 358 | if path: |
|
359 | 359 | return self.vfs.join(self._filter(path)) |
|
360 | 360 | else: |
|
361 | 361 | return self.vfs.join(path) |
|
362 | 362 | |
|
363 | 363 | filteropener = filtervfs |
|
364 | 364 | |
|
365 | 365 | class readonlyvfs(abstractvfs, auditvfs): |
|
366 | 366 | '''Wrapper vfs preventing any writing.''' |
|
367 | 367 | |
|
368 | 368 | def __init__(self, vfs): |
|
369 | 369 | auditvfs.__init__(self, vfs) |
|
370 | 370 | |
|
371 | 371 | def __call__(self, path, mode='r', *args, **kw): |
|
372 | 372 | if mode not in ('r', 'rb'): |
|
373 | 373 | raise util.Abort('this vfs is read only') |
|
374 | 374 | return self.vfs(path, mode, *args, **kw) |
|
375 | 375 | |
|
376 | 376 | |
|
377 | 377 | def walkrepos(path, followsym=False, seen_dirs=None, recurse=False): |
|
378 | 378 | '''yield every hg repository under path, always recursively. |
|
379 | 379 | The recurse flag will only control recursion into repo working dirs''' |
|
380 | 380 | def errhandler(err): |
|
381 | 381 | if err.filename == path: |
|
382 | 382 | raise err |
|
383 | 383 | samestat = getattr(os.path, 'samestat', None) |
|
384 | 384 | if followsym and samestat is not None: |
|
385 | 385 | def adddir(dirlst, dirname): |
|
386 | 386 | match = False |
|
387 | 387 | dirstat = os.stat(dirname) |
|
388 | 388 | for lstdirstat in dirlst: |
|
389 | 389 | if samestat(dirstat, lstdirstat): |
|
390 | 390 | match = True |
|
391 | 391 | break |
|
392 | 392 | if not match: |
|
393 | 393 | dirlst.append(dirstat) |
|
394 | 394 | return not match |
|
395 | 395 | else: |
|
396 | 396 | followsym = False |
|
397 | 397 | |
|
398 | 398 | if (seen_dirs is None) and followsym: |
|
399 | 399 | seen_dirs = [] |
|
400 | 400 | adddir(seen_dirs, path) |
|
401 | 401 | for root, dirs, files in os.walk(path, topdown=True, onerror=errhandler): |
|
402 | 402 | dirs.sort() |
|
403 | 403 | if '.hg' in dirs: |
|
404 | 404 | yield root # found a repository |
|
405 | 405 | qroot = os.path.join(root, '.hg', 'patches') |
|
406 | 406 | if os.path.isdir(os.path.join(qroot, '.hg')): |
|
407 | 407 | yield qroot # we have a patch queue repo here |
|
408 | 408 | if recurse: |
|
409 | 409 | # avoid recursing inside the .hg directory |
|
410 | 410 | dirs.remove('.hg') |
|
411 | 411 | else: |
|
412 | 412 | dirs[:] = [] # don't descend further |
|
413 | 413 | elif followsym: |
|
414 | 414 | newdirs = [] |
|
415 | 415 | for d in dirs: |
|
416 | 416 | fname = os.path.join(root, d) |
|
417 | 417 | if adddir(seen_dirs, fname): |
|
418 | 418 | if os.path.islink(fname): |
|
419 | 419 | for hgname in walkrepos(fname, True, seen_dirs): |
|
420 | 420 | yield hgname |
|
421 | 421 | else: |
|
422 | 422 | newdirs.append(d) |
|
423 | 423 | dirs[:] = newdirs |
|
424 | 424 | |
|
425 | 425 | def osrcpath(): |
|
426 | 426 | '''return default os-specific hgrc search path''' |
|
427 | 427 | path = systemrcpath() |
|
428 | 428 | path.extend(userrcpath()) |
|
429 | 429 | path = [os.path.normpath(f) for f in path] |
|
430 | 430 | return path |
|
431 | 431 | |
|
432 | 432 | _rcpath = None |
|
433 | 433 | |
|
434 | 434 | def rcpath(): |
|
435 | 435 | '''return hgrc search path. if env var HGRCPATH is set, use it. |
|
436 | 436 | for each item in path, if directory, use files ending in .rc, |
|
437 | 437 | else use item. |
|
438 | 438 | make HGRCPATH empty to only look in .hg/hgrc of current repo. |
|
439 | 439 | if no HGRCPATH, use default os-specific path.''' |
|
440 | 440 | global _rcpath |
|
441 | 441 | if _rcpath is None: |
|
442 | 442 | if 'HGRCPATH' in os.environ: |
|
443 | 443 | _rcpath = [] |
|
444 | 444 | for p in os.environ['HGRCPATH'].split(os.pathsep): |
|
445 | 445 | if not p: |
|
446 | 446 | continue |
|
447 | 447 | p = util.expandpath(p) |
|
448 | 448 | if os.path.isdir(p): |
|
449 | 449 | for f, kind in osutil.listdir(p): |
|
450 | 450 | if f.endswith('.rc'): |
|
451 | 451 | _rcpath.append(os.path.join(p, f)) |
|
452 | 452 | else: |
|
453 | 453 | _rcpath.append(p) |
|
454 | 454 | else: |
|
455 | 455 | _rcpath = osrcpath() |
|
456 | 456 | return _rcpath |
|
457 | 457 | |
|
458 | 458 | def revsingle(repo, revspec, default='.'): |
|
459 | 459 | if not revspec and revspec != 0: |
|
460 | 460 | return repo[default] |
|
461 | 461 | |
|
462 | 462 | l = revrange(repo, [revspec]) |
|
463 | 463 | if len(l) < 1: |
|
464 | 464 | raise util.Abort(_('empty revision set')) |
|
465 | 465 | return repo[l[-1]] |
|
466 | 466 | |
|
467 | 467 | def revpair(repo, revs): |
|
468 | 468 | if not revs: |
|
469 | 469 | return repo.dirstate.p1(), None |
|
470 | 470 | |
|
471 | 471 | l = revrange(repo, revs) |
|
472 | 472 | |
|
473 | 473 | if len(l) == 0: |
|
474 | 474 | raise util.Abort(_('empty revision range')) |
|
475 | 475 | |
|
476 | 476 | if len(l) == 1 and len(revs) == 1 and _revrangesep not in revs[0]: |
|
477 | 477 | return repo.lookup(l[0]), None |
|
478 | 478 | |
|
479 | 479 | return repo.lookup(l[0]), repo.lookup(l[-1]) |
|
480 | 480 | |
|
481 | 481 | _revrangesep = ':' |
|
482 | 482 | |
|
483 | 483 | def revrange(repo, revs): |
|
484 | 484 | """Yield revision as strings from a list of revision specifications.""" |
|
485 | 485 | |
|
486 | 486 | def revfix(repo, val, defval): |
|
487 | 487 | if not val and val != 0 and defval is not None: |
|
488 | 488 | return defval |
|
489 | 489 | return repo[val].rev() |
|
490 | 490 | |
|
491 | 491 | seen, l = set(), revset.baseset([]) |
|
492 | 492 | for spec in revs: |
|
493 | 493 | if l and not seen: |
|
494 | 494 | seen = set(l) |
|
495 | 495 | # attempt to parse old-style ranges first to deal with |
|
496 | 496 | # things like old-tag which contain query metacharacters |
|
497 | 497 | try: |
|
498 | 498 | if isinstance(spec, int): |
|
499 | 499 | seen.add(spec) |
|
500 | 500 | l = l + revset.baseset([spec]) |
|
501 | 501 | continue |
|
502 | 502 | |
|
503 | 503 | if _revrangesep in spec: |
|
504 | 504 | start, end = spec.split(_revrangesep, 1) |
|
505 | 505 | start = revfix(repo, start, 0) |
|
506 | 506 | end = revfix(repo, end, len(repo) - 1) |
|
507 | 507 | if end == nullrev and start < 0: |
|
508 | 508 | start = nullrev |
|
509 | 509 | rangeiter = repo.changelog.revs(start, end) |
|
510 | 510 | if not seen and not l: |
|
511 | 511 | # by far the most common case: revs = ["-1:0"] |
|
512 | 512 | l = revset.baseset(rangeiter) |
|
513 | 513 | # defer syncing seen until next iteration |
|
514 | 514 | continue |
|
515 | 515 | newrevs = set(rangeiter) |
|
516 | 516 | if seen: |
|
517 | 517 | newrevs.difference_update(seen) |
|
518 | 518 | seen.update(newrevs) |
|
519 | 519 | else: |
|
520 | 520 | seen = newrevs |
|
521 | 521 | l = l + revset.baseset(sorted(newrevs, reverse=start > end)) |
|
522 | 522 | continue |
|
523 | 523 | elif spec and spec in repo: # single unquoted rev |
|
524 | 524 | rev = revfix(repo, spec, None) |
|
525 | 525 | if rev in seen: |
|
526 | 526 | continue |
|
527 | 527 | seen.add(rev) |
|
528 | 528 | l = l + revset.baseset([rev]) |
|
529 | 529 | continue |
|
530 | 530 | except error.RepoLookupError: |
|
531 | 531 | pass |
|
532 | 532 | |
|
533 | 533 | # fall through to new-style queries if old-style fails |
|
534 | 534 | m = revset.match(repo.ui, spec, repo) |
|
535 | 535 | if seen or l: |
|
536 | 536 | dl = [r for r in m(repo, revset.spanset(repo)) if r not in seen] |
|
537 | 537 | l = l + revset.baseset(dl) |
|
538 | 538 | seen.update(dl) |
|
539 | 539 | else: |
|
540 | 540 | l = m(repo, revset.spanset(repo)) |
|
541 | 541 | |
|
542 | 542 | return l |
|
543 | 543 | |
|
544 | 544 | def expandpats(pats): |
|
545 | 545 | if not util.expandglobs: |
|
546 | 546 | return list(pats) |
|
547 | 547 | ret = [] |
|
548 | 548 | for p in pats: |
|
549 | 549 | kind, name = matchmod._patsplit(p, None) |
|
550 | 550 | if kind is None: |
|
551 | 551 | try: |
|
552 | 552 | globbed = glob.glob(name) |
|
553 | 553 | except re.error: |
|
554 | 554 | globbed = [name] |
|
555 | 555 | if globbed: |
|
556 | 556 | ret.extend(globbed) |
|
557 | 557 | continue |
|
558 | 558 | ret.append(p) |
|
559 | 559 | return ret |
|
560 | 560 | |
|
561 | 561 | def matchandpats(ctx, pats=[], opts={}, globbed=False, default='relpath'): |
|
562 | 562 | if pats == ("",): |
|
563 | 563 | pats = [] |
|
564 | 564 | if not globbed and default == 'relpath': |
|
565 | 565 | pats = expandpats(pats or []) |
|
566 | 566 | |
|
567 | 567 | m = ctx.match(pats, opts.get('include'), opts.get('exclude'), |
|
568 | 568 | default) |
|
569 | 569 | def badfn(f, msg): |
|
570 | 570 | ctx._repo.ui.warn("%s: %s\n" % (m.rel(f), msg)) |
|
571 | 571 | m.bad = badfn |
|
572 | 572 | return m, pats |
|
573 | 573 | |
|
574 | 574 | def match(ctx, pats=[], opts={}, globbed=False, default='relpath'): |
|
575 | 575 | return matchandpats(ctx, pats, opts, globbed, default)[0] |
|
576 | 576 | |
|
577 | 577 | def matchall(repo): |
|
578 | 578 | return matchmod.always(repo.root, repo.getcwd()) |
|
579 | 579 | |
|
580 | 580 | def matchfiles(repo, files): |
|
581 | 581 | return matchmod.exact(repo.root, repo.getcwd(), files) |
|
582 | 582 | |
|
583 | 583 | def addremove(repo, pats=[], opts={}, dry_run=None, similarity=None): |
|
584 | 584 | if dry_run is None: |
|
585 | 585 | dry_run = opts.get('dry_run') |
|
586 | 586 | if similarity is None: |
|
587 | 587 | similarity = float(opts.get('similarity') or 0) |
|
588 | 588 | # we'd use status here, except handling of symlinks and ignore is tricky |
|
589 | 589 | m = match(repo[None], pats, opts) |
|
590 | 590 | rejected = [] |
|
591 | 591 | m.bad = lambda x, y: rejected.append(x) |
|
592 | 592 | |
|
593 | 593 | added, unknown, deleted, removed = _interestingfiles(repo, m) |
|
594 | 594 | |
|
595 | 595 | unknownset = set(unknown) |
|
596 | 596 | toprint = unknownset.copy() |
|
597 | 597 | toprint.update(deleted) |
|
598 | 598 | for abs in sorted(toprint): |
|
599 | 599 | if repo.ui.verbose or not m.exact(abs): |
|
600 | 600 | rel = m.rel(abs) |
|
601 | 601 | if abs in unknownset: |
|
602 | 602 | status = _('adding %s\n') % ((pats and rel) or abs) |
|
603 | 603 | else: |
|
604 | 604 | status = _('removing %s\n') % ((pats and rel) or abs) |
|
605 | 605 | repo.ui.status(status) |
|
606 | 606 | |
|
607 | 607 | renames = _findrenames(repo, m, added + unknown, removed + deleted, |
|
608 | 608 | similarity) |
|
609 | 609 | |
|
610 | 610 | if not dry_run: |
|
611 | 611 | _markchanges(repo, unknown, deleted, renames) |
|
612 | 612 | |
|
613 | 613 | for f in rejected: |
|
614 | 614 | if f in m.files(): |
|
615 | 615 | return 1 |
|
616 | 616 | return 0 |
|
617 | 617 | |
|
618 | 618 | def marktouched(repo, files, similarity=0.0): |
|
619 | 619 | '''Assert that files have somehow been operated upon. files are relative to |
|
620 | 620 | the repo root.''' |
|
621 | 621 | m = matchfiles(repo, files) |
|
622 | 622 | rejected = [] |
|
623 | 623 | m.bad = lambda x, y: rejected.append(x) |
|
624 | 624 | |
|
625 | 625 | added, unknown, deleted, removed = _interestingfiles(repo, m) |
|
626 | 626 | |
|
627 | 627 | if repo.ui.verbose: |
|
628 | 628 | unknownset = set(unknown) |
|
629 | 629 | toprint = unknownset.copy() |
|
630 | 630 | toprint.update(deleted) |
|
631 | 631 | for abs in sorted(toprint): |
|
632 | 632 | if abs in unknownset: |
|
633 | 633 | status = _('adding %s\n') % abs |
|
634 | 634 | else: |
|
635 | 635 | status = _('removing %s\n') % abs |
|
636 | 636 | repo.ui.status(status) |
|
637 | 637 | |
|
638 | 638 | renames = _findrenames(repo, m, added + unknown, removed + deleted, |
|
639 | 639 | similarity) |
|
640 | 640 | |
|
641 | 641 | _markchanges(repo, unknown, deleted, renames) |
|
642 | 642 | |
|
643 | 643 | for f in rejected: |
|
644 | 644 | if f in m.files(): |
|
645 | 645 | return 1 |
|
646 | 646 | return 0 |
|
647 | 647 | |
|
648 | 648 | def _interestingfiles(repo, matcher): |
|
649 | 649 | '''Walk dirstate with matcher, looking for files that addremove would care |
|
650 | 650 | about. |
|
651 | 651 | |
|
652 | 652 | This is different from dirstate.status because it doesn't care about |
|
653 | 653 | whether files are modified or clean.''' |
|
654 | 654 | added, unknown, deleted, removed = [], [], [], [] |
|
655 | 655 | audit_path = pathutil.pathauditor(repo.root) |
|
656 | 656 | |
|
657 | 657 | ctx = repo[None] |
|
658 | 658 | dirstate = repo.dirstate |
|
659 | 659 | walkresults = dirstate.walk(matcher, sorted(ctx.substate), True, False, |
|
660 | 660 | full=False) |
|
661 | 661 | for abs, st in walkresults.iteritems(): |
|
662 | 662 | dstate = dirstate[abs] |
|
663 | 663 | if dstate == '?' and audit_path.check(abs): |
|
664 | 664 | unknown.append(abs) |
|
665 | 665 | elif dstate != 'r' and not st: |
|
666 | 666 | deleted.append(abs) |
|
667 | 667 | # for finding renames |
|
668 | 668 | elif dstate == 'r': |
|
669 | 669 | removed.append(abs) |
|
670 | 670 | elif dstate == 'a': |
|
671 | 671 | added.append(abs) |
|
672 | 672 | |
|
673 | 673 | return added, unknown, deleted, removed |
|
674 | 674 | |
|
675 | 675 | def _findrenames(repo, matcher, added, removed, similarity): |
|
676 | 676 | '''Find renames from removed files to added ones.''' |
|
677 | 677 | renames = {} |
|
678 | 678 | if similarity > 0: |
|
679 | 679 | for old, new, score in similar.findrenames(repo, added, removed, |
|
680 | 680 | similarity): |
|
681 | 681 | if (repo.ui.verbose or not matcher.exact(old) |
|
682 | 682 | or not matcher.exact(new)): |
|
683 | 683 | repo.ui.status(_('recording removal of %s as rename to %s ' |
|
684 | 684 | '(%d%% similar)\n') % |
|
685 | 685 | (matcher.rel(old), matcher.rel(new), |
|
686 | 686 | score * 100)) |
|
687 | 687 | renames[new] = old |
|
688 | 688 | return renames |
|
689 | 689 | |
|
690 | 690 | def _markchanges(repo, unknown, deleted, renames): |
|
691 | 691 | '''Marks the files in unknown as added, the files in deleted as removed, |
|
692 | 692 | and the files in renames as copied.''' |
|
693 | 693 | wctx = repo[None] |
|
694 | 694 | wlock = repo.wlock() |
|
695 | 695 | try: |
|
696 | 696 | wctx.forget(deleted) |
|
697 | 697 | wctx.add(unknown) |
|
698 | 698 | for new, old in renames.iteritems(): |
|
699 | 699 | wctx.copy(old, new) |
|
700 | 700 | finally: |
|
701 | 701 | wlock.release() |
|
702 | 702 | |
|
703 | 703 | def dirstatecopy(ui, repo, wctx, src, dst, dryrun=False, cwd=None): |
|
704 | 704 | """Update the dirstate to reflect the intent of copying src to dst. For |
|
705 | 705 | different reasons it might not end with dst being marked as copied from src. |
|
706 | 706 | """ |
|
707 | 707 | origsrc = repo.dirstate.copied(src) or src |
|
708 | 708 | if dst == origsrc: # copying back a copy? |
|
709 | 709 | if repo.dirstate[dst] not in 'mn' and not dryrun: |
|
710 | 710 | repo.dirstate.normallookup(dst) |
|
711 | 711 | else: |
|
712 | 712 | if repo.dirstate[origsrc] == 'a' and origsrc == src: |
|
713 | 713 | if not ui.quiet: |
|
714 | 714 | ui.warn(_("%s has not been committed yet, so no copy " |
|
715 | 715 | "data will be stored for %s.\n") |
|
716 | 716 | % (repo.pathto(origsrc, cwd), repo.pathto(dst, cwd))) |
|
717 | 717 | if repo.dirstate[dst] in '?r' and not dryrun: |
|
718 | 718 | wctx.add([dst]) |
|
719 | 719 | elif not dryrun: |
|
720 | 720 | wctx.copy(origsrc, dst) |
|
721 | 721 | |
|
722 | 722 | def readrequires(opener, supported): |
|
723 | 723 | '''Reads and parses .hg/requires and checks if all entries found |
|
724 | 724 | are in the list of supported features.''' |
|
725 | 725 | requirements = set(opener.read("requires").splitlines()) |
|
726 | 726 | missings = [] |
|
727 | 727 | for r in requirements: |
|
728 | 728 | if r not in supported: |
|
729 | 729 | if not r or not r[0].isalnum(): |
|
730 | 730 | raise error.RequirementError(_(".hg/requires file is corrupt")) |
|
731 | 731 | missings.append(r) |
|
732 | 732 | missings.sort() |
|
733 | 733 | if missings: |
|
734 | 734 | raise error.RequirementError( |
|
735 |
_(" |
|
|
736 |
|
|
|
735 | _("repository requires features unknown to this Mercurial: %s") | |
|
736 | % " ".join(missings), | |
|
737 | 737 | hint=_("see http://mercurial.selenic.com/wiki/MissingRequirement" |
|
738 |
" for |
|
|
738 | " for more information")) | |
|
739 | 739 | return requirements |
|
740 | 740 | |
|
741 | 741 | class filecachesubentry(object): |
|
742 | 742 | def __init__(self, path, stat): |
|
743 | 743 | self.path = path |
|
744 | 744 | self.cachestat = None |
|
745 | 745 | self._cacheable = None |
|
746 | 746 | |
|
747 | 747 | if stat: |
|
748 | 748 | self.cachestat = filecachesubentry.stat(self.path) |
|
749 | 749 | |
|
750 | 750 | if self.cachestat: |
|
751 | 751 | self._cacheable = self.cachestat.cacheable() |
|
752 | 752 | else: |
|
753 | 753 | # None means we don't know yet |
|
754 | 754 | self._cacheable = None |
|
755 | 755 | |
|
756 | 756 | def refresh(self): |
|
757 | 757 | if self.cacheable(): |
|
758 | 758 | self.cachestat = filecachesubentry.stat(self.path) |
|
759 | 759 | |
|
760 | 760 | def cacheable(self): |
|
761 | 761 | if self._cacheable is not None: |
|
762 | 762 | return self._cacheable |
|
763 | 763 | |
|
764 | 764 | # we don't know yet, assume it is for now |
|
765 | 765 | return True |
|
766 | 766 | |
|
767 | 767 | def changed(self): |
|
768 | 768 | # no point in going further if we can't cache it |
|
769 | 769 | if not self.cacheable(): |
|
770 | 770 | return True |
|
771 | 771 | |
|
772 | 772 | newstat = filecachesubentry.stat(self.path) |
|
773 | 773 | |
|
774 | 774 | # we may not know if it's cacheable yet, check again now |
|
775 | 775 | if newstat and self._cacheable is None: |
|
776 | 776 | self._cacheable = newstat.cacheable() |
|
777 | 777 | |
|
778 | 778 | # check again |
|
779 | 779 | if not self._cacheable: |
|
780 | 780 | return True |
|
781 | 781 | |
|
782 | 782 | if self.cachestat != newstat: |
|
783 | 783 | self.cachestat = newstat |
|
784 | 784 | return True |
|
785 | 785 | else: |
|
786 | 786 | return False |
|
787 | 787 | |
|
788 | 788 | @staticmethod |
|
789 | 789 | def stat(path): |
|
790 | 790 | try: |
|
791 | 791 | return util.cachestat(path) |
|
792 | 792 | except OSError, e: |
|
793 | 793 | if e.errno != errno.ENOENT: |
|
794 | 794 | raise |
|
795 | 795 | |
|
796 | 796 | class filecacheentry(object): |
|
797 | 797 | def __init__(self, paths, stat=True): |
|
798 | 798 | self._entries = [] |
|
799 | 799 | for path in paths: |
|
800 | 800 | self._entries.append(filecachesubentry(path, stat)) |
|
801 | 801 | |
|
802 | 802 | def changed(self): |
|
803 | 803 | '''true if any entry has changed''' |
|
804 | 804 | for entry in self._entries: |
|
805 | 805 | if entry.changed(): |
|
806 | 806 | return True |
|
807 | 807 | return False |
|
808 | 808 | |
|
809 | 809 | def refresh(self): |
|
810 | 810 | for entry in self._entries: |
|
811 | 811 | entry.refresh() |
|
812 | 812 | |
|
813 | 813 | class filecache(object): |
|
814 | 814 | '''A property like decorator that tracks files under .hg/ for updates. |
|
815 | 815 | |
|
816 | 816 | Records stat info when called in _filecache. |
|
817 | 817 | |
|
818 | 818 | On subsequent calls, compares old stat info with new info, and recreates the |
|
819 | 819 | object when any of the files changes, updating the new stat info in |
|
820 | 820 | _filecache. |
|
821 | 821 | |
|
822 | 822 | Mercurial either atomic renames or appends for files under .hg, |
|
823 | 823 | so to ensure the cache is reliable we need the filesystem to be able |
|
824 | 824 | to tell us if a file has been replaced. If it can't, we fallback to |
|
825 | 825 | recreating the object on every call (essentially the same behaviour as |
|
826 | 826 | propertycache). |
|
827 | 827 | |
|
828 | 828 | ''' |
|
829 | 829 | def __init__(self, *paths): |
|
830 | 830 | self.paths = paths |
|
831 | 831 | |
|
832 | 832 | def join(self, obj, fname): |
|
833 | 833 | """Used to compute the runtime path of a cached file. |
|
834 | 834 | |
|
835 | 835 | Users should subclass filecache and provide their own version of this |
|
836 | 836 | function to call the appropriate join function on 'obj' (an instance |
|
837 | 837 | of the class that its member function was decorated). |
|
838 | 838 | """ |
|
839 | 839 | return obj.join(fname) |
|
840 | 840 | |
|
841 | 841 | def __call__(self, func): |
|
842 | 842 | self.func = func |
|
843 | 843 | self.name = func.__name__ |
|
844 | 844 | return self |
|
845 | 845 | |
|
846 | 846 | def __get__(self, obj, type=None): |
|
847 | 847 | # do we need to check if the file changed? |
|
848 | 848 | if self.name in obj.__dict__: |
|
849 | 849 | assert self.name in obj._filecache, self.name |
|
850 | 850 | return obj.__dict__[self.name] |
|
851 | 851 | |
|
852 | 852 | entry = obj._filecache.get(self.name) |
|
853 | 853 | |
|
854 | 854 | if entry: |
|
855 | 855 | if entry.changed(): |
|
856 | 856 | entry.obj = self.func(obj) |
|
857 | 857 | else: |
|
858 | 858 | paths = [self.join(obj, path) for path in self.paths] |
|
859 | 859 | |
|
860 | 860 | # We stat -before- creating the object so our cache doesn't lie if |
|
861 | 861 | # a writer modified between the time we read and stat |
|
862 | 862 | entry = filecacheentry(paths, True) |
|
863 | 863 | entry.obj = self.func(obj) |
|
864 | 864 | |
|
865 | 865 | obj._filecache[self.name] = entry |
|
866 | 866 | |
|
867 | 867 | obj.__dict__[self.name] = entry.obj |
|
868 | 868 | return entry.obj |
|
869 | 869 | |
|
870 | 870 | def __set__(self, obj, value): |
|
871 | 871 | if self.name not in obj._filecache: |
|
872 | 872 | # we add an entry for the missing value because X in __dict__ |
|
873 | 873 | # implies X in _filecache |
|
874 | 874 | paths = [self.join(obj, path) for path in self.paths] |
|
875 | 875 | ce = filecacheentry(paths, False) |
|
876 | 876 | obj._filecache[self.name] = ce |
|
877 | 877 | else: |
|
878 | 878 | ce = obj._filecache[self.name] |
|
879 | 879 | |
|
880 | 880 | ce.obj = value # update cached copy |
|
881 | 881 | obj.__dict__[self.name] = value # update copy returned by obj.x |
|
882 | 882 | |
|
883 | 883 | def __delete__(self, obj): |
|
884 | 884 | try: |
|
885 | 885 | del obj.__dict__[self.name] |
|
886 | 886 | except KeyError: |
|
887 | 887 | raise AttributeError(self.name) |
|
888 | 888 | |
|
889 | 889 | class dirs(object): |
|
890 | 890 | '''a multiset of directory names from a dirstate or manifest''' |
|
891 | 891 | |
|
892 | 892 | def __init__(self, map, skip=None): |
|
893 | 893 | self._dirs = {} |
|
894 | 894 | addpath = self.addpath |
|
895 | 895 | if util.safehasattr(map, 'iteritems') and skip is not None: |
|
896 | 896 | for f, s in map.iteritems(): |
|
897 | 897 | if s[0] != skip: |
|
898 | 898 | addpath(f) |
|
899 | 899 | else: |
|
900 | 900 | for f in map: |
|
901 | 901 | addpath(f) |
|
902 | 902 | |
|
903 | 903 | def addpath(self, path): |
|
904 | 904 | dirs = self._dirs |
|
905 | 905 | for base in finddirs(path): |
|
906 | 906 | if base in dirs: |
|
907 | 907 | dirs[base] += 1 |
|
908 | 908 | return |
|
909 | 909 | dirs[base] = 1 |
|
910 | 910 | |
|
911 | 911 | def delpath(self, path): |
|
912 | 912 | dirs = self._dirs |
|
913 | 913 | for base in finddirs(path): |
|
914 | 914 | if dirs[base] > 1: |
|
915 | 915 | dirs[base] -= 1 |
|
916 | 916 | return |
|
917 | 917 | del dirs[base] |
|
918 | 918 | |
|
919 | 919 | def __iter__(self): |
|
920 | 920 | return self._dirs.iterkeys() |
|
921 | 921 | |
|
922 | 922 | def __contains__(self, d): |
|
923 | 923 | return d in self._dirs |
|
924 | 924 | |
|
925 | 925 | if util.safehasattr(parsers, 'dirs'): |
|
926 | 926 | dirs = parsers.dirs |
|
927 | 927 | |
|
928 | 928 | def finddirs(path): |
|
929 | 929 | pos = path.rfind('/') |
|
930 | 930 | while pos != -1: |
|
931 | 931 | yield path[:pos] |
|
932 | 932 | pos = path.rfind('/', 0, pos) |
@@ -1,356 +1,356 | |||
|
1 | 1 | commit date test |
|
2 | 2 | |
|
3 | 3 | $ hg init test |
|
4 | 4 | $ cd test |
|
5 | 5 | $ echo foo > foo |
|
6 | 6 | $ hg add foo |
|
7 | 7 | $ HGEDITOR=true hg commit -m "" |
|
8 | 8 | abort: empty commit message |
|
9 | 9 | [255] |
|
10 | 10 | $ hg commit -d '0 0' -m commit-1 |
|
11 | 11 | $ echo foo >> foo |
|
12 | 12 | $ hg commit -d '1 4444444' -m commit-3 |
|
13 | 13 | abort: impossible time zone offset: 4444444 |
|
14 | 14 | [255] |
|
15 | 15 | $ hg commit -d '1 15.1' -m commit-4 |
|
16 | 16 | abort: invalid date: '1\t15.1' |
|
17 | 17 | [255] |
|
18 | 18 | $ hg commit -d 'foo bar' -m commit-5 |
|
19 | 19 | abort: invalid date: 'foo bar' |
|
20 | 20 | [255] |
|
21 | 21 | $ hg commit -d ' 1 4444' -m commit-6 |
|
22 | 22 | $ hg commit -d '111111111111 0' -m commit-7 |
|
23 | 23 | abort: date exceeds 32 bits: 111111111111 |
|
24 | 24 | [255] |
|
25 | 25 | $ hg commit -d '-7654321 3600' -m commit-7 |
|
26 | 26 | abort: negative date value: -7654321 |
|
27 | 27 | [255] |
|
28 | 28 | |
|
29 | 29 | commit added file that has been deleted |
|
30 | 30 | |
|
31 | 31 | $ echo bar > bar |
|
32 | 32 | $ hg add bar |
|
33 | 33 | $ rm bar |
|
34 | 34 | $ hg commit -m commit-8 |
|
35 | 35 | nothing changed (1 missing files, see 'hg status') |
|
36 | 36 | [1] |
|
37 | 37 | $ hg commit -m commit-8-2 bar |
|
38 | 38 | abort: bar: file not found! |
|
39 | 39 | [255] |
|
40 | 40 | |
|
41 | 41 | $ hg -q revert -a --no-backup |
|
42 | 42 | |
|
43 | 43 | $ mkdir dir |
|
44 | 44 | $ echo boo > dir/file |
|
45 | 45 | $ hg add |
|
46 | 46 | adding dir/file (glob) |
|
47 | 47 | $ hg -v commit -m commit-9 dir |
|
48 | 48 | dir/file |
|
49 | 49 | committed changeset 2:d2a76177cb42 |
|
50 | 50 | |
|
51 | 51 | $ echo > dir.file |
|
52 | 52 | $ hg add |
|
53 | 53 | adding dir.file |
|
54 | 54 | $ hg commit -m commit-10 dir dir.file |
|
55 | 55 | abort: dir: no match under directory! |
|
56 | 56 | [255] |
|
57 | 57 | |
|
58 | 58 | $ echo >> dir/file |
|
59 | 59 | $ mkdir bleh |
|
60 | 60 | $ mkdir dir2 |
|
61 | 61 | $ cd bleh |
|
62 | 62 | $ hg commit -m commit-11 . |
|
63 | 63 | abort: bleh: no match under directory! |
|
64 | 64 | [255] |
|
65 | 65 | $ hg commit -m commit-12 ../dir ../dir2 |
|
66 | 66 | abort: dir2: no match under directory! |
|
67 | 67 | [255] |
|
68 | 68 | $ hg -v commit -m commit-13 ../dir |
|
69 | 69 | dir/file |
|
70 | 70 | committed changeset 3:1cd62a2d8db5 |
|
71 | 71 | $ cd .. |
|
72 | 72 | |
|
73 | 73 | $ hg commit -m commit-14 does-not-exist |
|
74 | 74 | abort: does-not-exist: * (glob) |
|
75 | 75 | [255] |
|
76 | 76 | |
|
77 | 77 | #if symlink |
|
78 | 78 | $ ln -s foo baz |
|
79 | 79 | $ hg commit -m commit-15 baz |
|
80 | 80 | abort: baz: file not tracked! |
|
81 | 81 | [255] |
|
82 | 82 | #endif |
|
83 | 83 | |
|
84 | 84 | $ touch quux |
|
85 | 85 | $ hg commit -m commit-16 quux |
|
86 | 86 | abort: quux: file not tracked! |
|
87 | 87 | [255] |
|
88 | 88 | $ echo >> dir/file |
|
89 | 89 | $ hg -v commit -m commit-17 dir/file |
|
90 | 90 | dir/file |
|
91 | 91 | committed changeset 4:49176991390e |
|
92 | 92 | |
|
93 | 93 | An empty date was interpreted as epoch origin |
|
94 | 94 | |
|
95 | 95 | $ echo foo >> foo |
|
96 | 96 | $ hg commit -d '' -m commit-no-date |
|
97 | 97 | $ hg tip --template '{date|isodate}\n' | grep '1970' |
|
98 | 98 | [1] |
|
99 | 99 | |
|
100 | 100 | Make sure we do not obscure unknown requires file entries (issue2649) |
|
101 | 101 | |
|
102 | 102 | $ echo foo >> foo |
|
103 | 103 | $ echo fake >> .hg/requires |
|
104 | 104 | $ hg commit -m bla |
|
105 |
abort: |
|
|
106 |
(see http://mercurial.selenic.com/wiki/MissingRequirement for |
|
|
105 | abort: repository requires features unknown to this Mercurial: fake! | |
|
106 | (see http://mercurial.selenic.com/wiki/MissingRequirement for more information) | |
|
107 | 107 | [255] |
|
108 | 108 | |
|
109 | 109 | $ cd .. |
|
110 | 110 | |
|
111 | 111 | |
|
112 | 112 | partial subdir commit test |
|
113 | 113 | |
|
114 | 114 | $ hg init test2 |
|
115 | 115 | $ cd test2 |
|
116 | 116 | $ mkdir foo |
|
117 | 117 | $ echo foo > foo/foo |
|
118 | 118 | $ mkdir bar |
|
119 | 119 | $ echo bar > bar/bar |
|
120 | 120 | $ hg add |
|
121 | 121 | adding bar/bar (glob) |
|
122 | 122 | adding foo/foo (glob) |
|
123 | 123 | $ hg ci -m commit-subdir-1 foo |
|
124 | 124 | $ hg ci -m commit-subdir-2 bar |
|
125 | 125 | |
|
126 | 126 | subdir log 1 |
|
127 | 127 | |
|
128 | 128 | $ hg log -v foo |
|
129 | 129 | changeset: 0:f97e73a25882 |
|
130 | 130 | user: test |
|
131 | 131 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
132 | 132 | files: foo/foo |
|
133 | 133 | description: |
|
134 | 134 | commit-subdir-1 |
|
135 | 135 | |
|
136 | 136 | |
|
137 | 137 | |
|
138 | 138 | subdir log 2 |
|
139 | 139 | |
|
140 | 140 | $ hg log -v bar |
|
141 | 141 | changeset: 1:aa809156d50d |
|
142 | 142 | tag: tip |
|
143 | 143 | user: test |
|
144 | 144 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
145 | 145 | files: bar/bar |
|
146 | 146 | description: |
|
147 | 147 | commit-subdir-2 |
|
148 | 148 | |
|
149 | 149 | |
|
150 | 150 | |
|
151 | 151 | full log |
|
152 | 152 | |
|
153 | 153 | $ hg log -v |
|
154 | 154 | changeset: 1:aa809156d50d |
|
155 | 155 | tag: tip |
|
156 | 156 | user: test |
|
157 | 157 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
158 | 158 | files: bar/bar |
|
159 | 159 | description: |
|
160 | 160 | commit-subdir-2 |
|
161 | 161 | |
|
162 | 162 | |
|
163 | 163 | changeset: 0:f97e73a25882 |
|
164 | 164 | user: test |
|
165 | 165 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
166 | 166 | files: foo/foo |
|
167 | 167 | description: |
|
168 | 168 | commit-subdir-1 |
|
169 | 169 | |
|
170 | 170 | |
|
171 | 171 | $ cd .. |
|
172 | 172 | |
|
173 | 173 | |
|
174 | 174 | dot and subdir commit test |
|
175 | 175 | |
|
176 | 176 | $ hg init test3 |
|
177 | 177 | $ cd test3 |
|
178 | 178 | $ mkdir foo |
|
179 | 179 | $ echo foo content > foo/plain-file |
|
180 | 180 | $ hg add foo/plain-file |
|
181 | 181 | $ hg ci -m commit-foo-subdir foo |
|
182 | 182 | $ echo modified foo content > foo/plain-file |
|
183 | 183 | $ hg ci -m commit-foo-dot . |
|
184 | 184 | |
|
185 | 185 | full log |
|
186 | 186 | |
|
187 | 187 | $ hg log -v |
|
188 | 188 | changeset: 1:95b38e3a5b2e |
|
189 | 189 | tag: tip |
|
190 | 190 | user: test |
|
191 | 191 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
192 | 192 | files: foo/plain-file |
|
193 | 193 | description: |
|
194 | 194 | commit-foo-dot |
|
195 | 195 | |
|
196 | 196 | |
|
197 | 197 | changeset: 0:65d4e9386227 |
|
198 | 198 | user: test |
|
199 | 199 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
200 | 200 | files: foo/plain-file |
|
201 | 201 | description: |
|
202 | 202 | commit-foo-subdir |
|
203 | 203 | |
|
204 | 204 | |
|
205 | 205 | |
|
206 | 206 | subdir log |
|
207 | 207 | |
|
208 | 208 | $ cd foo |
|
209 | 209 | $ hg log . |
|
210 | 210 | changeset: 1:95b38e3a5b2e |
|
211 | 211 | tag: tip |
|
212 | 212 | user: test |
|
213 | 213 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
214 | 214 | summary: commit-foo-dot |
|
215 | 215 | |
|
216 | 216 | changeset: 0:65d4e9386227 |
|
217 | 217 | user: test |
|
218 | 218 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
219 | 219 | summary: commit-foo-subdir |
|
220 | 220 | |
|
221 | 221 | $ cd .. |
|
222 | 222 | $ cd .. |
|
223 | 223 | |
|
224 | 224 | Issue1049: Hg permits partial commit of merge without warning |
|
225 | 225 | |
|
226 | 226 | $ hg init issue1049 |
|
227 | 227 | $ cd issue1049 |
|
228 | 228 | $ echo a > a |
|
229 | 229 | $ hg ci -Ama |
|
230 | 230 | adding a |
|
231 | 231 | $ echo a >> a |
|
232 | 232 | $ hg ci -mb |
|
233 | 233 | $ hg up 0 |
|
234 | 234 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
235 | 235 | $ echo b >> a |
|
236 | 236 | $ hg ci -mc |
|
237 | 237 | created new head |
|
238 | 238 | $ HGMERGE=true hg merge |
|
239 | 239 | merging a |
|
240 | 240 | 0 files updated, 1 files merged, 0 files removed, 0 files unresolved |
|
241 | 241 | (branch merge, don't forget to commit) |
|
242 | 242 | |
|
243 | 243 | should fail because we are specifying a file name |
|
244 | 244 | |
|
245 | 245 | $ hg ci -mmerge a |
|
246 | 246 | abort: cannot partially commit a merge (do not specify files or patterns) |
|
247 | 247 | [255] |
|
248 | 248 | |
|
249 | 249 | should fail because we are specifying a pattern |
|
250 | 250 | |
|
251 | 251 | $ hg ci -mmerge -I a |
|
252 | 252 | abort: cannot partially commit a merge (do not specify files or patterns) |
|
253 | 253 | [255] |
|
254 | 254 | |
|
255 | 255 | should succeed |
|
256 | 256 | |
|
257 | 257 | $ hg ci -mmerge |
|
258 | 258 | $ cd .. |
|
259 | 259 | |
|
260 | 260 | |
|
261 | 261 | test commit message content |
|
262 | 262 | |
|
263 | 263 | $ hg init commitmsg |
|
264 | 264 | $ cd commitmsg |
|
265 | 265 | $ echo changed > changed |
|
266 | 266 | $ echo removed > removed |
|
267 | 267 | $ hg book currentbookmark |
|
268 | 268 | $ hg ci -qAm init |
|
269 | 269 | |
|
270 | 270 | $ hg rm removed |
|
271 | 271 | $ echo changed >> changed |
|
272 | 272 | $ echo added > added |
|
273 | 273 | $ hg add added |
|
274 | 274 | $ HGEDITOR=cat hg ci -A |
|
275 | 275 | |
|
276 | 276 | |
|
277 | 277 | HG: Enter commit message. Lines beginning with 'HG:' are removed. |
|
278 | 278 | HG: Leave message empty to abort commit. |
|
279 | 279 | HG: -- |
|
280 | 280 | HG: user: test |
|
281 | 281 | HG: branch 'default' |
|
282 | 282 | HG: bookmark 'currentbookmark' |
|
283 | 283 | HG: added added |
|
284 | 284 | HG: changed changed |
|
285 | 285 | HG: removed removed |
|
286 | 286 | abort: empty commit message |
|
287 | 287 | [255] |
|
288 | 288 | |
|
289 | 289 | test saving last-message.txt |
|
290 | 290 | |
|
291 | 291 | $ hg init sub |
|
292 | 292 | $ echo a > sub/a |
|
293 | 293 | $ hg -R sub add sub/a |
|
294 | 294 | $ cat > sub/.hg/hgrc <<EOF |
|
295 | 295 | > [hooks] |
|
296 | 296 | > precommit.test-saving-last-message = false |
|
297 | 297 | > EOF |
|
298 | 298 | |
|
299 | 299 | $ echo 'sub = sub' > .hgsub |
|
300 | 300 | $ hg add .hgsub |
|
301 | 301 | |
|
302 | 302 | $ cat > $TESTDIR/editor.sh <<EOF |
|
303 | 303 | > echo "==== before editing:" |
|
304 | 304 | > cat \$1 |
|
305 | 305 | > echo "====" |
|
306 | 306 | > echo "test saving last-message.txt" >> \$1 |
|
307 | 307 | > EOF |
|
308 | 308 | |
|
309 | 309 | $ rm -f .hg/last-message.txt |
|
310 | 310 | $ HGEDITOR="sh $TESTDIR/editor.sh" hg commit -S -q |
|
311 | 311 | ==== before editing: |
|
312 | 312 | |
|
313 | 313 | |
|
314 | 314 | HG: Enter commit message. Lines beginning with 'HG:' are removed. |
|
315 | 315 | HG: Leave message empty to abort commit. |
|
316 | 316 | HG: -- |
|
317 | 317 | HG: user: test |
|
318 | 318 | HG: branch 'default' |
|
319 | 319 | HG: bookmark 'currentbookmark' |
|
320 | 320 | HG: subrepo sub |
|
321 | 321 | HG: added .hgsub |
|
322 | 322 | HG: added added |
|
323 | 323 | HG: changed .hgsubstate |
|
324 | 324 | HG: changed changed |
|
325 | 325 | HG: removed removed |
|
326 | 326 | ==== |
|
327 | 327 | abort: precommit.test-saving-last-message hook exited with status 1 (in subrepo sub) |
|
328 | 328 | [255] |
|
329 | 329 | $ cat .hg/last-message.txt |
|
330 | 330 | |
|
331 | 331 | |
|
332 | 332 | test saving last-message.txt |
|
333 | 333 | |
|
334 | 334 | $ cd .. |
|
335 | 335 | |
|
336 | 336 | |
|
337 | 337 | commit copy |
|
338 | 338 | |
|
339 | 339 | $ hg init dir2 |
|
340 | 340 | $ cd dir2 |
|
341 | 341 | $ echo bleh > bar |
|
342 | 342 | $ hg add bar |
|
343 | 343 | $ hg ci -m 'add bar' |
|
344 | 344 | |
|
345 | 345 | $ hg cp bar foo |
|
346 | 346 | $ echo >> bar |
|
347 | 347 | $ hg ci -m 'cp bar foo; change bar' |
|
348 | 348 | |
|
349 | 349 | $ hg debugrename foo |
|
350 | 350 | foo renamed from bar:26d3ca0dfd18e44d796b564e38dd173c9668d3a9 |
|
351 | 351 | $ hg debugindex bar |
|
352 | 352 | rev offset length ..... linkrev nodeid p1 p2 (re) |
|
353 | 353 | 0 0 6 ..... 0 26d3ca0dfd18 000000000000 000000000000 (re) |
|
354 | 354 | 1 6 7 ..... 1 d267bddd54f7 26d3ca0dfd18 000000000000 (re) |
|
355 | 355 | |
|
356 | 356 | $ cd .. |
@@ -1,126 +1,126 | |||
|
1 | 1 | $ "$TESTDIR/hghave" serve || exit 80 |
|
2 | 2 | |
|
3 | 3 | #if no-outer-repo |
|
4 | 4 | |
|
5 | 5 | no repo |
|
6 | 6 | |
|
7 | 7 | $ hg id |
|
8 | 8 | abort: there is no Mercurial repository here (.hg not found) |
|
9 | 9 | [255] |
|
10 | 10 | |
|
11 | 11 | #endif |
|
12 | 12 | |
|
13 | 13 | create repo |
|
14 | 14 | |
|
15 | 15 | $ hg init test |
|
16 | 16 | $ cd test |
|
17 | 17 | $ echo a > a |
|
18 | 18 | $ hg ci -Ama |
|
19 | 19 | adding a |
|
20 | 20 | |
|
21 | 21 | basic id usage |
|
22 | 22 | |
|
23 | 23 | $ hg id |
|
24 | 24 | cb9a9f314b8b tip |
|
25 | 25 | $ hg id --debug |
|
26 | 26 | cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b tip |
|
27 | 27 | $ hg id -q |
|
28 | 28 | cb9a9f314b8b |
|
29 | 29 | $ hg id -v |
|
30 | 30 | cb9a9f314b8b tip |
|
31 | 31 | |
|
32 | 32 | with options |
|
33 | 33 | |
|
34 | 34 | $ hg id -r. |
|
35 | 35 | cb9a9f314b8b tip |
|
36 | 36 | $ hg id -n |
|
37 | 37 | 0 |
|
38 | 38 | $ hg id -t |
|
39 | 39 | tip |
|
40 | 40 | $ hg id -b |
|
41 | 41 | default |
|
42 | 42 | $ hg id -i |
|
43 | 43 | cb9a9f314b8b |
|
44 | 44 | $ hg id -n -t -b -i |
|
45 | 45 | cb9a9f314b8b 0 default tip |
|
46 | 46 | |
|
47 | 47 | with modifications |
|
48 | 48 | |
|
49 | 49 | $ echo b > a |
|
50 | 50 | $ hg id -n -t -b -i |
|
51 | 51 | cb9a9f314b8b+ 0+ default tip |
|
52 | 52 | |
|
53 | 53 | other local repo |
|
54 | 54 | |
|
55 | 55 | $ cd .. |
|
56 | 56 | $ hg -R test id |
|
57 | 57 | cb9a9f314b8b+ tip |
|
58 | 58 | #if no-outer-repo |
|
59 | 59 | $ hg id test |
|
60 | 60 | cb9a9f314b8b+ tip |
|
61 | 61 | #endif |
|
62 | 62 | |
|
63 | 63 | with remote http repo |
|
64 | 64 | |
|
65 | 65 | $ cd test |
|
66 | 66 | $ hg serve -p $HGPORT1 -d --pid-file=hg.pid |
|
67 | 67 | $ cat hg.pid >> $DAEMON_PIDS |
|
68 | 68 | $ hg id http://localhost:$HGPORT1/ |
|
69 | 69 | cb9a9f314b8b |
|
70 | 70 | |
|
71 | 71 | remote with rev number? |
|
72 | 72 | |
|
73 | 73 | $ hg id -n http://localhost:$HGPORT1/ |
|
74 | 74 | abort: can't query remote revision number, branch, or tags |
|
75 | 75 | [255] |
|
76 | 76 | |
|
77 | 77 | remote with tags? |
|
78 | 78 | |
|
79 | 79 | $ hg id -t http://localhost:$HGPORT1/ |
|
80 | 80 | abort: can't query remote revision number, branch, or tags |
|
81 | 81 | [255] |
|
82 | 82 | |
|
83 | 83 | remote with branch? |
|
84 | 84 | |
|
85 | 85 | $ hg id -b http://localhost:$HGPORT1/ |
|
86 | 86 | abort: can't query remote revision number, branch, or tags |
|
87 | 87 | [255] |
|
88 | 88 | |
|
89 | 89 | test bookmark support |
|
90 | 90 | |
|
91 | 91 | $ hg bookmark Y |
|
92 | 92 | $ hg bookmark Z |
|
93 | 93 | $ hg bookmarks |
|
94 | 94 | Y 0:cb9a9f314b8b |
|
95 | 95 | * Z 0:cb9a9f314b8b |
|
96 | 96 | $ hg id |
|
97 | 97 | cb9a9f314b8b+ tip Y/Z |
|
98 | 98 | $ hg id --bookmarks |
|
99 | 99 | Y Z |
|
100 | 100 | |
|
101 | 101 | test remote identify with bookmarks |
|
102 | 102 | |
|
103 | 103 | $ hg id http://localhost:$HGPORT1/ |
|
104 | 104 | cb9a9f314b8b Y/Z |
|
105 | 105 | $ hg id --bookmarks http://localhost:$HGPORT1/ |
|
106 | 106 | Y Z |
|
107 | 107 | $ hg id -r . http://localhost:$HGPORT1/ |
|
108 | 108 | cb9a9f314b8b Y/Z |
|
109 | 109 | $ hg id --bookmarks -r . http://localhost:$HGPORT1/ |
|
110 | 110 | Y Z |
|
111 | 111 | |
|
112 | 112 | Make sure we do not obscure unknown requires file entries (issue2649) |
|
113 | 113 | |
|
114 | 114 | $ echo fake >> .hg/requires |
|
115 | 115 | $ hg id |
|
116 |
abort: |
|
|
117 |
(see http://mercurial.selenic.com/wiki/MissingRequirement for |
|
|
116 | abort: repository requires features unknown to this Mercurial: fake! | |
|
117 | (see http://mercurial.selenic.com/wiki/MissingRequirement for more information) | |
|
118 | 118 | [255] |
|
119 | 119 | |
|
120 | 120 | $ cd .. |
|
121 | 121 | #if no-outer-repo |
|
122 | 122 | $ hg id test |
|
123 |
abort: |
|
|
124 |
(see http://mercurial.selenic.com/wiki/MissingRequirement for |
|
|
123 | abort: repository requires features unknown to this Mercurial: fake! | |
|
124 | (see http://mercurial.selenic.com/wiki/MissingRequirement for more information) | |
|
125 | 125 | [255] |
|
126 | 126 | #endif |
@@ -1,2290 +1,2290 | |||
|
1 | 1 | $ USERCACHE="$TESTTMP/cache"; export USERCACHE |
|
2 | 2 | $ mkdir "${USERCACHE}" |
|
3 | 3 | $ cat >> $HGRCPATH <<EOF |
|
4 | 4 | > [extensions] |
|
5 | 5 | > largefiles= |
|
6 | 6 | > purge= |
|
7 | 7 | > rebase= |
|
8 | 8 | > transplant= |
|
9 | 9 | > [phases] |
|
10 | 10 | > publish=False |
|
11 | 11 | > [largefiles] |
|
12 | 12 | > minsize=2 |
|
13 | 13 | > patterns=glob:**.dat |
|
14 | 14 | > usercache=${USERCACHE} |
|
15 | 15 | > [hooks] |
|
16 | 16 | > precommit=sh -c "echo \\"Invoking status precommit hook\\"; hg status" |
|
17 | 17 | > EOF |
|
18 | 18 | |
|
19 | 19 | Create the repo with a couple of revisions of both large and normal |
|
20 | 20 | files. |
|
21 | 21 | Test status and dirstate of largefiles and that summary output is correct. |
|
22 | 22 | |
|
23 | 23 | $ hg init a |
|
24 | 24 | $ cd a |
|
25 | 25 | $ mkdir sub |
|
26 | 26 | $ echo normal1 > normal1 |
|
27 | 27 | $ echo normal2 > sub/normal2 |
|
28 | 28 | $ echo large1 > large1 |
|
29 | 29 | $ echo large2 > sub/large2 |
|
30 | 30 | $ hg add normal1 sub/normal2 |
|
31 | 31 | $ hg add --large large1 sub/large2 |
|
32 | 32 | $ hg commit -m "add files" |
|
33 | 33 | Invoking status precommit hook |
|
34 | 34 | A large1 |
|
35 | 35 | A normal1 |
|
36 | 36 | A sub/large2 |
|
37 | 37 | A sub/normal2 |
|
38 | 38 | $ touch large1 sub/large2 |
|
39 | 39 | $ sleep 1 |
|
40 | 40 | $ hg st |
|
41 | 41 | $ hg debugstate --nodates |
|
42 | 42 | n 644 41 .hglf/large1 |
|
43 | 43 | n 644 41 .hglf/sub/large2 |
|
44 | 44 | n 644 8 normal1 |
|
45 | 45 | n 644 8 sub/normal2 |
|
46 | 46 | $ hg debugstate --large |
|
47 | 47 | n 644 7 large1 |
|
48 | 48 | n 644 7 sub/large2 |
|
49 | 49 | $ echo normal11 > normal1 |
|
50 | 50 | $ echo normal22 > sub/normal2 |
|
51 | 51 | $ echo large11 > large1 |
|
52 | 52 | $ echo large22 > sub/large2 |
|
53 | 53 | $ hg commit -m "edit files" |
|
54 | 54 | Invoking status precommit hook |
|
55 | 55 | M large1 |
|
56 | 56 | M normal1 |
|
57 | 57 | M sub/large2 |
|
58 | 58 | M sub/normal2 |
|
59 | 59 | $ hg sum --large |
|
60 | 60 | parent: 1:ce8896473775 tip |
|
61 | 61 | edit files |
|
62 | 62 | branch: default |
|
63 | 63 | commit: (clean) |
|
64 | 64 | update: (current) |
|
65 | 65 | largefiles: (no remote repo) |
|
66 | 66 | |
|
67 | 67 | Commit preserved largefile contents. |
|
68 | 68 | |
|
69 | 69 | $ cat normal1 |
|
70 | 70 | normal11 |
|
71 | 71 | $ cat large1 |
|
72 | 72 | large11 |
|
73 | 73 | $ cat sub/normal2 |
|
74 | 74 | normal22 |
|
75 | 75 | $ cat sub/large2 |
|
76 | 76 | large22 |
|
77 | 77 | |
|
78 | 78 | Test status, subdir and unknown files |
|
79 | 79 | |
|
80 | 80 | $ echo unknown > sub/unknown |
|
81 | 81 | $ hg st --all |
|
82 | 82 | ? sub/unknown |
|
83 | 83 | C large1 |
|
84 | 84 | C normal1 |
|
85 | 85 | C sub/large2 |
|
86 | 86 | C sub/normal2 |
|
87 | 87 | $ hg st --all sub |
|
88 | 88 | ? sub/unknown |
|
89 | 89 | C sub/large2 |
|
90 | 90 | C sub/normal2 |
|
91 | 91 | $ rm sub/unknown |
|
92 | 92 | |
|
93 | 93 | Test messages and exit codes for remove warning cases |
|
94 | 94 | |
|
95 | 95 | $ hg remove -A large1 |
|
96 | 96 | not removing large1: file still exists |
|
97 | 97 | [1] |
|
98 | 98 | $ echo 'modified' > large1 |
|
99 | 99 | $ hg remove large1 |
|
100 | 100 | not removing large1: file is modified (use -f to force removal) |
|
101 | 101 | [1] |
|
102 | 102 | $ echo 'new' > normalnew |
|
103 | 103 | $ hg add normalnew |
|
104 | 104 | $ echo 'new' > largenew |
|
105 | 105 | $ hg add --large normalnew |
|
106 | 106 | normalnew already tracked! |
|
107 | 107 | $ hg remove normalnew largenew |
|
108 | 108 | not removing largenew: file is untracked |
|
109 | 109 | not removing normalnew: file has been marked for add (use forget to undo) |
|
110 | 110 | [1] |
|
111 | 111 | $ rm normalnew largenew |
|
112 | 112 | $ hg up -Cq |
|
113 | 113 | |
|
114 | 114 | Remove both largefiles and normal files. |
|
115 | 115 | |
|
116 | 116 | $ hg remove normal1 large1 |
|
117 | 117 | $ hg status large1 |
|
118 | 118 | R large1 |
|
119 | 119 | $ hg commit -m "remove files" |
|
120 | 120 | Invoking status precommit hook |
|
121 | 121 | R large1 |
|
122 | 122 | R normal1 |
|
123 | 123 | $ ls |
|
124 | 124 | sub |
|
125 | 125 | $ echo "testlargefile" > large1-test |
|
126 | 126 | $ hg add --large large1-test |
|
127 | 127 | $ hg st |
|
128 | 128 | A large1-test |
|
129 | 129 | $ hg rm large1-test |
|
130 | 130 | not removing large1-test: file has been marked for add (use forget to undo) |
|
131 | 131 | [1] |
|
132 | 132 | $ hg st |
|
133 | 133 | A large1-test |
|
134 | 134 | $ hg forget large1-test |
|
135 | 135 | $ hg st |
|
136 | 136 | ? large1-test |
|
137 | 137 | $ hg remove large1-test |
|
138 | 138 | not removing large1-test: file is untracked |
|
139 | 139 | [1] |
|
140 | 140 | $ hg forget large1-test |
|
141 | 141 | not removing large1-test: file is already untracked |
|
142 | 142 | [1] |
|
143 | 143 | $ rm large1-test |
|
144 | 144 | |
|
145 | 145 | Copy both largefiles and normal files (testing that status output is correct). |
|
146 | 146 | |
|
147 | 147 | $ hg cp sub/normal2 normal1 |
|
148 | 148 | $ hg cp sub/large2 large1 |
|
149 | 149 | $ hg commit -m "copy files" |
|
150 | 150 | Invoking status precommit hook |
|
151 | 151 | A large1 |
|
152 | 152 | A normal1 |
|
153 | 153 | $ cat normal1 |
|
154 | 154 | normal22 |
|
155 | 155 | $ cat large1 |
|
156 | 156 | large22 |
|
157 | 157 | |
|
158 | 158 | Test moving largefiles and verify that normal files are also unaffected. |
|
159 | 159 | |
|
160 | 160 | $ hg mv normal1 normal3 |
|
161 | 161 | $ hg mv large1 large3 |
|
162 | 162 | $ hg mv sub/normal2 sub/normal4 |
|
163 | 163 | $ hg mv sub/large2 sub/large4 |
|
164 | 164 | $ hg commit -m "move files" |
|
165 | 165 | Invoking status precommit hook |
|
166 | 166 | A large3 |
|
167 | 167 | A normal3 |
|
168 | 168 | A sub/large4 |
|
169 | 169 | A sub/normal4 |
|
170 | 170 | R large1 |
|
171 | 171 | R normal1 |
|
172 | 172 | R sub/large2 |
|
173 | 173 | R sub/normal2 |
|
174 | 174 | $ cat normal3 |
|
175 | 175 | normal22 |
|
176 | 176 | $ cat large3 |
|
177 | 177 | large22 |
|
178 | 178 | $ cat sub/normal4 |
|
179 | 179 | normal22 |
|
180 | 180 | $ cat sub/large4 |
|
181 | 181 | large22 |
|
182 | 182 | |
|
183 | 183 | Test copies and moves from a directory other than root (issue3516) |
|
184 | 184 | |
|
185 | 185 | $ cd .. |
|
186 | 186 | $ hg init lf_cpmv |
|
187 | 187 | $ cd lf_cpmv |
|
188 | 188 | $ mkdir dira |
|
189 | 189 | $ mkdir dira/dirb |
|
190 | 190 | $ touch dira/dirb/largefile |
|
191 | 191 | $ hg add --large dira/dirb/largefile |
|
192 | 192 | $ hg commit -m "added" |
|
193 | 193 | Invoking status precommit hook |
|
194 | 194 | A dira/dirb/largefile |
|
195 | 195 | $ cd dira |
|
196 | 196 | $ hg cp dirb/largefile foo/largefile |
|
197 | 197 | $ hg ci -m "deep copy" |
|
198 | 198 | Invoking status precommit hook |
|
199 | 199 | A dira/foo/largefile |
|
200 | 200 | $ find . | sort |
|
201 | 201 | . |
|
202 | 202 | ./dirb |
|
203 | 203 | ./dirb/largefile |
|
204 | 204 | ./foo |
|
205 | 205 | ./foo/largefile |
|
206 | 206 | $ hg mv foo/largefile baz/largefile |
|
207 | 207 | $ hg ci -m "moved" |
|
208 | 208 | Invoking status precommit hook |
|
209 | 209 | A dira/baz/largefile |
|
210 | 210 | R dira/foo/largefile |
|
211 | 211 | $ find . | sort |
|
212 | 212 | . |
|
213 | 213 | ./baz |
|
214 | 214 | ./baz/largefile |
|
215 | 215 | ./dirb |
|
216 | 216 | ./dirb/largefile |
|
217 | 217 | ./foo |
|
218 | 218 | $ cd ../../a |
|
219 | 219 | |
|
220 | 220 | #if serve |
|
221 | 221 | Test display of largefiles in hgweb |
|
222 | 222 | |
|
223 | 223 | $ hg serve -d -p $HGPORT --pid-file ../hg.pid |
|
224 | 224 | $ cat ../hg.pid >> $DAEMON_PIDS |
|
225 | 225 | $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/tip/?style=raw' |
|
226 | 226 | 200 Script output follows |
|
227 | 227 | |
|
228 | 228 | |
|
229 | 229 | drwxr-xr-x sub |
|
230 | 230 | -rw-r--r-- 41 large3 |
|
231 | 231 | -rw-r--r-- 9 normal3 |
|
232 | 232 | |
|
233 | 233 | |
|
234 | 234 | $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'file/tip/sub/?style=raw' |
|
235 | 235 | 200 Script output follows |
|
236 | 236 | |
|
237 | 237 | |
|
238 | 238 | -rw-r--r-- 41 large4 |
|
239 | 239 | -rw-r--r-- 9 normal4 |
|
240 | 240 | |
|
241 | 241 | |
|
242 | 242 | $ "$TESTDIR/killdaemons.py" $DAEMON_PIDS |
|
243 | 243 | #endif |
|
244 | 244 | |
|
245 | 245 | Test archiving the various revisions. These hit corner cases known with |
|
246 | 246 | archiving. |
|
247 | 247 | |
|
248 | 248 | $ hg archive -r 0 ../archive0 |
|
249 | 249 | $ hg archive -r 1 ../archive1 |
|
250 | 250 | $ hg archive -r 2 ../archive2 |
|
251 | 251 | $ hg archive -r 3 ../archive3 |
|
252 | 252 | $ hg archive -r 4 ../archive4 |
|
253 | 253 | $ cd ../archive0 |
|
254 | 254 | $ cat normal1 |
|
255 | 255 | normal1 |
|
256 | 256 | $ cat large1 |
|
257 | 257 | large1 |
|
258 | 258 | $ cat sub/normal2 |
|
259 | 259 | normal2 |
|
260 | 260 | $ cat sub/large2 |
|
261 | 261 | large2 |
|
262 | 262 | $ cd ../archive1 |
|
263 | 263 | $ cat normal1 |
|
264 | 264 | normal11 |
|
265 | 265 | $ cat large1 |
|
266 | 266 | large11 |
|
267 | 267 | $ cat sub/normal2 |
|
268 | 268 | normal22 |
|
269 | 269 | $ cat sub/large2 |
|
270 | 270 | large22 |
|
271 | 271 | $ cd ../archive2 |
|
272 | 272 | $ ls |
|
273 | 273 | sub |
|
274 | 274 | $ cat sub/normal2 |
|
275 | 275 | normal22 |
|
276 | 276 | $ cat sub/large2 |
|
277 | 277 | large22 |
|
278 | 278 | $ cd ../archive3 |
|
279 | 279 | $ cat normal1 |
|
280 | 280 | normal22 |
|
281 | 281 | $ cat large1 |
|
282 | 282 | large22 |
|
283 | 283 | $ cat sub/normal2 |
|
284 | 284 | normal22 |
|
285 | 285 | $ cat sub/large2 |
|
286 | 286 | large22 |
|
287 | 287 | $ cd ../archive4 |
|
288 | 288 | $ cat normal3 |
|
289 | 289 | normal22 |
|
290 | 290 | $ cat large3 |
|
291 | 291 | large22 |
|
292 | 292 | $ cat sub/normal4 |
|
293 | 293 | normal22 |
|
294 | 294 | $ cat sub/large4 |
|
295 | 295 | large22 |
|
296 | 296 | |
|
297 | 297 | Commit corner case: specify files to commit. |
|
298 | 298 | |
|
299 | 299 | $ cd ../a |
|
300 | 300 | $ echo normal3 > normal3 |
|
301 | 301 | $ echo large3 > large3 |
|
302 | 302 | $ echo normal4 > sub/normal4 |
|
303 | 303 | $ echo large4 > sub/large4 |
|
304 | 304 | $ hg commit normal3 large3 sub/normal4 sub/large4 -m "edit files again" |
|
305 | 305 | Invoking status precommit hook |
|
306 | 306 | M large3 |
|
307 | 307 | M normal3 |
|
308 | 308 | M sub/large4 |
|
309 | 309 | M sub/normal4 |
|
310 | 310 | $ cat normal3 |
|
311 | 311 | normal3 |
|
312 | 312 | $ cat large3 |
|
313 | 313 | large3 |
|
314 | 314 | $ cat sub/normal4 |
|
315 | 315 | normal4 |
|
316 | 316 | $ cat sub/large4 |
|
317 | 317 | large4 |
|
318 | 318 | |
|
319 | 319 | One more commit corner case: commit from a subdirectory. |
|
320 | 320 | |
|
321 | 321 | $ cd ../a |
|
322 | 322 | $ echo normal33 > normal3 |
|
323 | 323 | $ echo large33 > large3 |
|
324 | 324 | $ echo normal44 > sub/normal4 |
|
325 | 325 | $ echo large44 > sub/large4 |
|
326 | 326 | $ cd sub |
|
327 | 327 | $ hg commit -m "edit files yet again" |
|
328 | 328 | Invoking status precommit hook |
|
329 | 329 | M large3 |
|
330 | 330 | M normal3 |
|
331 | 331 | M sub/large4 |
|
332 | 332 | M sub/normal4 |
|
333 | 333 | $ cat ../normal3 |
|
334 | 334 | normal33 |
|
335 | 335 | $ cat ../large3 |
|
336 | 336 | large33 |
|
337 | 337 | $ cat normal4 |
|
338 | 338 | normal44 |
|
339 | 339 | $ cat large4 |
|
340 | 340 | large44 |
|
341 | 341 | |
|
342 | 342 | Committing standins is not allowed. |
|
343 | 343 | |
|
344 | 344 | $ cd .. |
|
345 | 345 | $ echo large3 > large3 |
|
346 | 346 | $ hg commit .hglf/large3 -m "try to commit standin" |
|
347 | 347 | abort: file ".hglf/large3" is a largefile standin |
|
348 | 348 | (commit the largefile itself instead) |
|
349 | 349 | [255] |
|
350 | 350 | |
|
351 | 351 | Corner cases for adding largefiles. |
|
352 | 352 | |
|
353 | 353 | $ echo large5 > large5 |
|
354 | 354 | $ hg add --large large5 |
|
355 | 355 | $ hg add --large large5 |
|
356 | 356 | large5 already a largefile |
|
357 | 357 | $ mkdir sub2 |
|
358 | 358 | $ echo large6 > sub2/large6 |
|
359 | 359 | $ echo large7 > sub2/large7 |
|
360 | 360 | $ hg add --large sub2 |
|
361 | 361 | adding sub2/large6 as a largefile (glob) |
|
362 | 362 | adding sub2/large7 as a largefile (glob) |
|
363 | 363 | $ hg st |
|
364 | 364 | M large3 |
|
365 | 365 | A large5 |
|
366 | 366 | A sub2/large6 |
|
367 | 367 | A sub2/large7 |
|
368 | 368 | |
|
369 | 369 | Committing directories containing only largefiles. |
|
370 | 370 | |
|
371 | 371 | $ mkdir -p z/y/x/m |
|
372 | 372 | $ touch z/y/x/m/large1 |
|
373 | 373 | $ touch z/y/x/large2 |
|
374 | 374 | $ hg add --large z/y/x/m/large1 z/y/x/large2 |
|
375 | 375 | $ hg commit -m "Subdir with directory only containing largefiles" z |
|
376 | 376 | Invoking status precommit hook |
|
377 | 377 | M large3 |
|
378 | 378 | A large5 |
|
379 | 379 | A sub2/large6 |
|
380 | 380 | A sub2/large7 |
|
381 | 381 | A z/y/x/large2 |
|
382 | 382 | A z/y/x/m/large1 |
|
383 | 383 | $ hg rollback --quiet |
|
384 | 384 | $ touch z/y/x/m/normal |
|
385 | 385 | $ hg add z/y/x/m/normal |
|
386 | 386 | $ hg commit -m "Subdir with mixed contents" z |
|
387 | 387 | Invoking status precommit hook |
|
388 | 388 | M large3 |
|
389 | 389 | A large5 |
|
390 | 390 | A sub2/large6 |
|
391 | 391 | A sub2/large7 |
|
392 | 392 | A z/y/x/large2 |
|
393 | 393 | A z/y/x/m/large1 |
|
394 | 394 | A z/y/x/m/normal |
|
395 | 395 | $ hg st |
|
396 | 396 | M large3 |
|
397 | 397 | A large5 |
|
398 | 398 | A sub2/large6 |
|
399 | 399 | A sub2/large7 |
|
400 | 400 | $ hg rollback --quiet |
|
401 | 401 | $ hg revert z/y/x/large2 z/y/x/m/large1 |
|
402 | 402 | $ rm z/y/x/large2 z/y/x/m/large1 |
|
403 | 403 | $ hg commit -m "Subdir with normal contents" z |
|
404 | 404 | Invoking status precommit hook |
|
405 | 405 | M large3 |
|
406 | 406 | A large5 |
|
407 | 407 | A sub2/large6 |
|
408 | 408 | A sub2/large7 |
|
409 | 409 | A z/y/x/m/normal |
|
410 | 410 | $ hg st |
|
411 | 411 | M large3 |
|
412 | 412 | A large5 |
|
413 | 413 | A sub2/large6 |
|
414 | 414 | A sub2/large7 |
|
415 | 415 | $ hg rollback --quiet |
|
416 | 416 | $ hg revert --quiet z |
|
417 | 417 | $ hg commit -m "Empty subdir" z |
|
418 | 418 | abort: z: no match under directory! |
|
419 | 419 | [255] |
|
420 | 420 | $ rm -rf z |
|
421 | 421 | $ hg ci -m "standin" .hglf |
|
422 | 422 | abort: file ".hglf" is a largefile standin |
|
423 | 423 | (commit the largefile itself instead) |
|
424 | 424 | [255] |
|
425 | 425 | |
|
426 | 426 | Test "hg status" with combination of 'file pattern' and 'directory |
|
427 | 427 | pattern' for largefiles: |
|
428 | 428 | |
|
429 | 429 | $ hg status sub2/large6 sub2 |
|
430 | 430 | A sub2/large6 |
|
431 | 431 | A sub2/large7 |
|
432 | 432 | |
|
433 | 433 | Config settings (pattern **.dat, minsize 2 MB) are respected. |
|
434 | 434 | |
|
435 | 435 | $ echo testdata > test.dat |
|
436 | 436 | $ dd bs=1k count=2k if=/dev/zero of=reallylarge > /dev/null 2> /dev/null |
|
437 | 437 | $ hg add |
|
438 | 438 | adding reallylarge as a largefile |
|
439 | 439 | adding test.dat as a largefile |
|
440 | 440 | |
|
441 | 441 | Test that minsize and --lfsize handle float values; |
|
442 | 442 | also tests that --lfsize overrides largefiles.minsize. |
|
443 | 443 | (0.250 MB = 256 kB = 262144 B) |
|
444 | 444 | |
|
445 | 445 | $ dd if=/dev/zero of=ratherlarge bs=1024 count=256 > /dev/null 2> /dev/null |
|
446 | 446 | $ dd if=/dev/zero of=medium bs=1024 count=128 > /dev/null 2> /dev/null |
|
447 | 447 | $ hg --config largefiles.minsize=.25 add |
|
448 | 448 | adding ratherlarge as a largefile |
|
449 | 449 | adding medium |
|
450 | 450 | $ hg forget medium |
|
451 | 451 | $ hg --config largefiles.minsize=.25 add --lfsize=.125 |
|
452 | 452 | adding medium as a largefile |
|
453 | 453 | $ dd if=/dev/zero of=notlarge bs=1024 count=127 > /dev/null 2> /dev/null |
|
454 | 454 | $ hg --config largefiles.minsize=.25 add --lfsize=.125 |
|
455 | 455 | adding notlarge |
|
456 | 456 | $ hg forget notlarge |
|
457 | 457 | |
|
458 | 458 | Test forget on largefiles. |
|
459 | 459 | |
|
460 | 460 | $ hg forget large3 large5 test.dat reallylarge ratherlarge medium |
|
461 | 461 | $ hg commit -m "add/edit more largefiles" |
|
462 | 462 | Invoking status precommit hook |
|
463 | 463 | A sub2/large6 |
|
464 | 464 | A sub2/large7 |
|
465 | 465 | R large3 |
|
466 | 466 | ? large5 |
|
467 | 467 | ? medium |
|
468 | 468 | ? notlarge |
|
469 | 469 | ? ratherlarge |
|
470 | 470 | ? reallylarge |
|
471 | 471 | ? test.dat |
|
472 | 472 | $ hg st |
|
473 | 473 | ? large3 |
|
474 | 474 | ? large5 |
|
475 | 475 | ? medium |
|
476 | 476 | ? notlarge |
|
477 | 477 | ? ratherlarge |
|
478 | 478 | ? reallylarge |
|
479 | 479 | ? test.dat |
|
480 | 480 | |
|
481 | 481 | Purge with largefiles: verify that largefiles are still in the working |
|
482 | 482 | dir after a purge. |
|
483 | 483 | |
|
484 | 484 | $ hg purge --all |
|
485 | 485 | $ cat sub/large4 |
|
486 | 486 | large44 |
|
487 | 487 | $ cat sub2/large6 |
|
488 | 488 | large6 |
|
489 | 489 | $ cat sub2/large7 |
|
490 | 490 | large7 |
|
491 | 491 | |
|
492 | 492 | Test addremove: verify that files that should be added as largfiles are added as |
|
493 | 493 | such and that already-existing largfiles are not added as normal files by |
|
494 | 494 | accident. |
|
495 | 495 | |
|
496 | 496 | $ rm normal3 |
|
497 | 497 | $ rm sub/large4 |
|
498 | 498 | $ echo "testing addremove with patterns" > testaddremove.dat |
|
499 | 499 | $ echo "normaladdremove" > normaladdremove |
|
500 | 500 | $ hg addremove |
|
501 | 501 | removing sub/large4 |
|
502 | 502 | adding testaddremove.dat as a largefile |
|
503 | 503 | removing normal3 |
|
504 | 504 | adding normaladdremove |
|
505 | 505 | |
|
506 | 506 | Test addremove with -R |
|
507 | 507 | |
|
508 | 508 | $ hg up -C |
|
509 | 509 | getting changed largefiles |
|
510 | 510 | 1 largefiles updated, 0 removed |
|
511 | 511 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
512 | 512 | $ rm normal3 |
|
513 | 513 | $ rm sub/large4 |
|
514 | 514 | $ echo "testing addremove with patterns" > testaddremove.dat |
|
515 | 515 | $ echo "normaladdremove" > normaladdremove |
|
516 | 516 | $ cd .. |
|
517 | 517 | $ hg -R a addremove |
|
518 | 518 | removing sub/large4 |
|
519 | 519 | adding a/testaddremove.dat as a largefile (glob) |
|
520 | 520 | removing normal3 |
|
521 | 521 | adding normaladdremove |
|
522 | 522 | $ cd a |
|
523 | 523 | |
|
524 | 524 | Test 3364 |
|
525 | 525 | $ hg clone . ../addrm |
|
526 | 526 | updating to branch default |
|
527 | 527 | getting changed largefiles |
|
528 | 528 | 3 largefiles updated, 0 removed |
|
529 | 529 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
530 | 530 | $ cd ../addrm |
|
531 | 531 | $ cat >> .hg/hgrc <<EOF |
|
532 | 532 | > [hooks] |
|
533 | 533 | > post-commit.stat=sh -c "echo \\"Invoking status postcommit hook\\"; hg status -A" |
|
534 | 534 | > EOF |
|
535 | 535 | $ touch foo |
|
536 | 536 | $ hg add --large foo |
|
537 | 537 | $ hg ci -m "add foo" |
|
538 | 538 | Invoking status precommit hook |
|
539 | 539 | A foo |
|
540 | 540 | Invoking status postcommit hook |
|
541 | 541 | C foo |
|
542 | 542 | C normal3 |
|
543 | 543 | C sub/large4 |
|
544 | 544 | C sub/normal4 |
|
545 | 545 | C sub2/large6 |
|
546 | 546 | C sub2/large7 |
|
547 | 547 | $ rm foo |
|
548 | 548 | $ hg st |
|
549 | 549 | ! foo |
|
550 | 550 | hmm.. no precommit invoked, but there is a postcommit?? |
|
551 | 551 | $ hg ci -m "will not checkin" |
|
552 | 552 | nothing changed |
|
553 | 553 | Invoking status postcommit hook |
|
554 | 554 | ! foo |
|
555 | 555 | C normal3 |
|
556 | 556 | C sub/large4 |
|
557 | 557 | C sub/normal4 |
|
558 | 558 | C sub2/large6 |
|
559 | 559 | C sub2/large7 |
|
560 | 560 | [1] |
|
561 | 561 | $ hg addremove |
|
562 | 562 | removing foo |
|
563 | 563 | $ hg st |
|
564 | 564 | R foo |
|
565 | 565 | $ hg ci -m "used to say nothing changed" |
|
566 | 566 | Invoking status precommit hook |
|
567 | 567 | R foo |
|
568 | 568 | Invoking status postcommit hook |
|
569 | 569 | C normal3 |
|
570 | 570 | C sub/large4 |
|
571 | 571 | C sub/normal4 |
|
572 | 572 | C sub2/large6 |
|
573 | 573 | C sub2/large7 |
|
574 | 574 | $ hg st |
|
575 | 575 | |
|
576 | 576 | Test 3507 (both normal files and largefiles were a problem) |
|
577 | 577 | |
|
578 | 578 | $ touch normal |
|
579 | 579 | $ touch large |
|
580 | 580 | $ hg add normal |
|
581 | 581 | $ hg add --large large |
|
582 | 582 | $ hg ci -m "added" |
|
583 | 583 | Invoking status precommit hook |
|
584 | 584 | A large |
|
585 | 585 | A normal |
|
586 | 586 | Invoking status postcommit hook |
|
587 | 587 | C large |
|
588 | 588 | C normal |
|
589 | 589 | C normal3 |
|
590 | 590 | C sub/large4 |
|
591 | 591 | C sub/normal4 |
|
592 | 592 | C sub2/large6 |
|
593 | 593 | C sub2/large7 |
|
594 | 594 | $ hg remove normal |
|
595 | 595 | $ hg addremove --traceback |
|
596 | 596 | $ hg ci -m "addremoved normal" |
|
597 | 597 | Invoking status precommit hook |
|
598 | 598 | R normal |
|
599 | 599 | Invoking status postcommit hook |
|
600 | 600 | C large |
|
601 | 601 | C normal3 |
|
602 | 602 | C sub/large4 |
|
603 | 603 | C sub/normal4 |
|
604 | 604 | C sub2/large6 |
|
605 | 605 | C sub2/large7 |
|
606 | 606 | $ hg up -C '.^' |
|
607 | 607 | getting changed largefiles |
|
608 | 608 | 0 largefiles updated, 0 removed |
|
609 | 609 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
610 | 610 | $ hg remove large |
|
611 | 611 | $ hg addremove --traceback |
|
612 | 612 | $ hg ci -m "removed large" |
|
613 | 613 | Invoking status precommit hook |
|
614 | 614 | R large |
|
615 | 615 | created new head |
|
616 | 616 | Invoking status postcommit hook |
|
617 | 617 | C normal |
|
618 | 618 | C normal3 |
|
619 | 619 | C sub/large4 |
|
620 | 620 | C sub/normal4 |
|
621 | 621 | C sub2/large6 |
|
622 | 622 | C sub2/large7 |
|
623 | 623 | |
|
624 | 624 | Test commit -A (issue 3542) |
|
625 | 625 | $ echo large8 > large8 |
|
626 | 626 | $ hg add --large large8 |
|
627 | 627 | $ hg ci -Am 'this used to add large8 as normal and commit both' |
|
628 | 628 | Invoking status precommit hook |
|
629 | 629 | A large8 |
|
630 | 630 | Invoking status postcommit hook |
|
631 | 631 | C large8 |
|
632 | 632 | C normal |
|
633 | 633 | C normal3 |
|
634 | 634 | C sub/large4 |
|
635 | 635 | C sub/normal4 |
|
636 | 636 | C sub2/large6 |
|
637 | 637 | C sub2/large7 |
|
638 | 638 | $ rm large8 |
|
639 | 639 | $ hg ci -Am 'this used to not notice the rm' |
|
640 | 640 | removing large8 |
|
641 | 641 | Invoking status precommit hook |
|
642 | 642 | R large8 |
|
643 | 643 | Invoking status postcommit hook |
|
644 | 644 | C normal |
|
645 | 645 | C normal3 |
|
646 | 646 | C sub/large4 |
|
647 | 647 | C sub/normal4 |
|
648 | 648 | C sub2/large6 |
|
649 | 649 | C sub2/large7 |
|
650 | 650 | |
|
651 | 651 | Test that a standin can't be added as a large file |
|
652 | 652 | |
|
653 | 653 | $ touch large |
|
654 | 654 | $ hg add --large large |
|
655 | 655 | $ hg ci -m "add" |
|
656 | 656 | Invoking status precommit hook |
|
657 | 657 | A large |
|
658 | 658 | Invoking status postcommit hook |
|
659 | 659 | C large |
|
660 | 660 | C normal |
|
661 | 661 | C normal3 |
|
662 | 662 | C sub/large4 |
|
663 | 663 | C sub/normal4 |
|
664 | 664 | C sub2/large6 |
|
665 | 665 | C sub2/large7 |
|
666 | 666 | $ hg remove large |
|
667 | 667 | $ touch large |
|
668 | 668 | $ hg addremove --config largefiles.patterns=**large --traceback |
|
669 | 669 | adding large as a largefile |
|
670 | 670 | |
|
671 | 671 | Test that outgoing --large works (with revsets too) |
|
672 | 672 | $ hg outgoing --rev '.^' --large |
|
673 | 673 | comparing with $TESTTMP/a (glob) |
|
674 | 674 | searching for changes |
|
675 | 675 | changeset: 8:c02fd3b77ec4 |
|
676 | 676 | user: test |
|
677 | 677 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
678 | 678 | summary: add foo |
|
679 | 679 | |
|
680 | 680 | changeset: 9:289dd08c9bbb |
|
681 | 681 | user: test |
|
682 | 682 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
683 | 683 | summary: used to say nothing changed |
|
684 | 684 | |
|
685 | 685 | changeset: 10:34f23ac6ac12 |
|
686 | 686 | user: test |
|
687 | 687 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
688 | 688 | summary: added |
|
689 | 689 | |
|
690 | 690 | changeset: 12:710c1b2f523c |
|
691 | 691 | parent: 10:34f23ac6ac12 |
|
692 | 692 | user: test |
|
693 | 693 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
694 | 694 | summary: removed large |
|
695 | 695 | |
|
696 | 696 | changeset: 13:0a3e75774479 |
|
697 | 697 | user: test |
|
698 | 698 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
699 | 699 | summary: this used to add large8 as normal and commit both |
|
700 | 700 | |
|
701 | 701 | changeset: 14:84f3d378175c |
|
702 | 702 | user: test |
|
703 | 703 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
704 | 704 | summary: this used to not notice the rm |
|
705 | 705 | |
|
706 | 706 | searching for changes |
|
707 | 707 | largefiles to upload: |
|
708 | 708 | foo |
|
709 | 709 | large |
|
710 | 710 | large8 |
|
711 | 711 | |
|
712 | 712 | $ cd ../a |
|
713 | 713 | |
|
714 | 714 | Clone a largefiles repo. |
|
715 | 715 | |
|
716 | 716 | $ hg clone . ../b |
|
717 | 717 | updating to branch default |
|
718 | 718 | getting changed largefiles |
|
719 | 719 | 3 largefiles updated, 0 removed |
|
720 | 720 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
721 | 721 | $ cd ../b |
|
722 | 722 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' |
|
723 | 723 | 7:daea875e9014 add/edit more largefiles |
|
724 | 724 | 6:4355d653f84f edit files yet again |
|
725 | 725 | 5:9d5af5072dbd edit files again |
|
726 | 726 | 4:74c02385b94c move files |
|
727 | 727 | 3:9e8fbc4bce62 copy files |
|
728 | 728 | 2:51a0ae4d5864 remove files |
|
729 | 729 | 1:ce8896473775 edit files |
|
730 | 730 | 0:30d30fe6a5be add files |
|
731 | 731 | $ cat normal3 |
|
732 | 732 | normal33 |
|
733 | 733 | $ cat sub/normal4 |
|
734 | 734 | normal44 |
|
735 | 735 | $ cat sub/large4 |
|
736 | 736 | large44 |
|
737 | 737 | $ cat sub2/large6 |
|
738 | 738 | large6 |
|
739 | 739 | $ cat sub2/large7 |
|
740 | 740 | large7 |
|
741 | 741 | $ hg log -qf sub2/large7 |
|
742 | 742 | 7:daea875e9014 |
|
743 | 743 | $ cd .. |
|
744 | 744 | $ hg clone a -r 3 c |
|
745 | 745 | adding changesets |
|
746 | 746 | adding manifests |
|
747 | 747 | adding file changes |
|
748 | 748 | added 4 changesets with 10 changes to 4 files |
|
749 | 749 | updating to branch default |
|
750 | 750 | getting changed largefiles |
|
751 | 751 | 2 largefiles updated, 0 removed |
|
752 | 752 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
753 | 753 | $ cd c |
|
754 | 754 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' |
|
755 | 755 | 3:9e8fbc4bce62 copy files |
|
756 | 756 | 2:51a0ae4d5864 remove files |
|
757 | 757 | 1:ce8896473775 edit files |
|
758 | 758 | 0:30d30fe6a5be add files |
|
759 | 759 | $ cat normal1 |
|
760 | 760 | normal22 |
|
761 | 761 | $ cat large1 |
|
762 | 762 | large22 |
|
763 | 763 | $ cat sub/normal2 |
|
764 | 764 | normal22 |
|
765 | 765 | $ cat sub/large2 |
|
766 | 766 | large22 |
|
767 | 767 | |
|
768 | 768 | Old revisions of a clone have correct largefiles content (this also |
|
769 | 769 | tests update). |
|
770 | 770 | |
|
771 | 771 | $ hg update -r 1 |
|
772 | 772 | getting changed largefiles |
|
773 | 773 | 1 largefiles updated, 0 removed |
|
774 | 774 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
775 | 775 | $ cat large1 |
|
776 | 776 | large11 |
|
777 | 777 | $ cat sub/large2 |
|
778 | 778 | large22 |
|
779 | 779 | $ cd .. |
|
780 | 780 | |
|
781 | 781 | Test cloning with --all-largefiles flag |
|
782 | 782 | |
|
783 | 783 | $ rm "${USERCACHE}"/* |
|
784 | 784 | $ hg clone --all-largefiles a a-backup |
|
785 | 785 | updating to branch default |
|
786 | 786 | getting changed largefiles |
|
787 | 787 | 3 largefiles updated, 0 removed |
|
788 | 788 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
789 | 789 | 8 additional largefiles cached |
|
790 | 790 | |
|
791 | 791 | $ rm "${USERCACHE}"/* |
|
792 | 792 | $ hg clone --all-largefiles -u 0 a a-clone0 |
|
793 | 793 | updating to branch default |
|
794 | 794 | getting changed largefiles |
|
795 | 795 | 2 largefiles updated, 0 removed |
|
796 | 796 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
797 | 797 | 9 additional largefiles cached |
|
798 | 798 | $ hg -R a-clone0 sum |
|
799 | 799 | parent: 0:30d30fe6a5be |
|
800 | 800 | add files |
|
801 | 801 | branch: default |
|
802 | 802 | commit: (clean) |
|
803 | 803 | update: 7 new changesets (update) |
|
804 | 804 | |
|
805 | 805 | $ rm "${USERCACHE}"/* |
|
806 | 806 | $ hg clone --all-largefiles -u 1 a a-clone1 |
|
807 | 807 | updating to branch default |
|
808 | 808 | getting changed largefiles |
|
809 | 809 | 2 largefiles updated, 0 removed |
|
810 | 810 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
811 | 811 | 8 additional largefiles cached |
|
812 | 812 | $ hg -R a-clone1 verify --large --lfa --lfc |
|
813 | 813 | checking changesets |
|
814 | 814 | checking manifests |
|
815 | 815 | crosschecking files in changesets and manifests |
|
816 | 816 | checking files |
|
817 | 817 | 10 files, 8 changesets, 24 total revisions |
|
818 | 818 | searching 8 changesets for largefiles |
|
819 | 819 | verified contents of 13 revisions of 6 largefiles |
|
820 | 820 | $ hg -R a-clone1 sum |
|
821 | 821 | parent: 1:ce8896473775 |
|
822 | 822 | edit files |
|
823 | 823 | branch: default |
|
824 | 824 | commit: (clean) |
|
825 | 825 | update: 6 new changesets (update) |
|
826 | 826 | |
|
827 | 827 | $ rm "${USERCACHE}"/* |
|
828 | 828 | $ hg clone --all-largefiles -U a a-clone-u |
|
829 | 829 | 11 additional largefiles cached |
|
830 | 830 | $ hg -R a-clone-u sum |
|
831 | 831 | parent: -1:000000000000 (no revision checked out) |
|
832 | 832 | branch: default |
|
833 | 833 | commit: (clean) |
|
834 | 834 | update: 8 new changesets (update) |
|
835 | 835 | |
|
836 | 836 | Show computed destination directory: |
|
837 | 837 | |
|
838 | 838 | $ mkdir xyz |
|
839 | 839 | $ cd xyz |
|
840 | 840 | $ hg clone ../a |
|
841 | 841 | destination directory: a |
|
842 | 842 | updating to branch default |
|
843 | 843 | getting changed largefiles |
|
844 | 844 | 3 largefiles updated, 0 removed |
|
845 | 845 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
846 | 846 | $ cd .. |
|
847 | 847 | |
|
848 | 848 | Clone URL without path: |
|
849 | 849 | |
|
850 | 850 | $ hg clone file:// |
|
851 | 851 | abort: repository / not found! |
|
852 | 852 | [255] |
|
853 | 853 | |
|
854 | 854 | Ensure base clone command argument validation |
|
855 | 855 | |
|
856 | 856 | $ hg clone -U -u 0 a a-clone-failure |
|
857 | 857 | abort: cannot specify both --noupdate and --updaterev |
|
858 | 858 | [255] |
|
859 | 859 | |
|
860 | 860 | $ hg clone --all-largefiles a ssh://localhost/a |
|
861 | 861 | abort: --all-largefiles is incompatible with non-local destination ssh://localhost/a |
|
862 | 862 | [255] |
|
863 | 863 | |
|
864 | 864 | Test pulling with --all-largefiles flag. Also test that the largefiles are |
|
865 | 865 | downloaded from 'default' instead of 'default-push' when no source is specified |
|
866 | 866 | (issue3584) |
|
867 | 867 | |
|
868 | 868 | $ rm -Rf a-backup |
|
869 | 869 | $ hg clone -r 1 a a-backup |
|
870 | 870 | adding changesets |
|
871 | 871 | adding manifests |
|
872 | 872 | adding file changes |
|
873 | 873 | added 2 changesets with 8 changes to 4 files |
|
874 | 874 | updating to branch default |
|
875 | 875 | getting changed largefiles |
|
876 | 876 | 2 largefiles updated, 0 removed |
|
877 | 877 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
878 | 878 | $ rm "${USERCACHE}"/* |
|
879 | 879 | $ cd a-backup |
|
880 | 880 | $ hg pull --all-largefiles --config paths.default-push=bogus/path |
|
881 | 881 | pulling from $TESTTMP/a (glob) |
|
882 | 882 | searching for changes |
|
883 | 883 | adding changesets |
|
884 | 884 | adding manifests |
|
885 | 885 | adding file changes |
|
886 | 886 | added 6 changesets with 16 changes to 8 files |
|
887 | 887 | (run 'hg update' to get a working copy) |
|
888 | 888 | 6 largefiles cached |
|
889 | 889 | |
|
890 | 890 | redo pull with --lfrev and check it pulls largefiles for the right revs |
|
891 | 891 | |
|
892 | 892 | $ hg rollback |
|
893 | 893 | repository tip rolled back to revision 1 (undo pull) |
|
894 | 894 | $ hg pull -v --lfrev 'heads(pulled())+min(pulled())' |
|
895 | 895 | pulling from $TESTTMP/a (glob) |
|
896 | 896 | searching for changes |
|
897 | 897 | all local heads known remotely |
|
898 | 898 | 6 changesets found |
|
899 | 899 | adding changesets |
|
900 | 900 | adding manifests |
|
901 | 901 | adding file changes |
|
902 | 902 | added 6 changesets with 16 changes to 8 files |
|
903 | 903 | calling hook changegroup.lfiles: hgext.largefiles.reposetup.checkrequireslfiles |
|
904 | 904 | (run 'hg update' to get a working copy) |
|
905 | 905 | pulling largefiles for revision 7 |
|
906 | 906 | found 971fb41e78fea4f8e0ba5244784239371cb00591 in store |
|
907 | 907 | found 0d6d75887db61b2c7e6c74b5dd8fc6ad50c0cc30 in store |
|
908 | 908 | found bb3151689acb10f0c3125c560d5e63df914bc1af in store |
|
909 | 909 | pulling largefiles for revision 2 |
|
910 | 910 | found eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 in store |
|
911 | 911 | 0 largefiles cached |
|
912 | 912 | |
|
913 | 913 | lfpull |
|
914 | 914 | |
|
915 | 915 | $ hg lfpull -r : --config largefiles.usercache=usercache-lfpull |
|
916 | 916 | 2 largefiles cached |
|
917 | 917 | $ hg lfpull -v -r 4+2 --config largefiles.usercache=usercache-lfpull |
|
918 | 918 | pulling largefiles for revision 4 |
|
919 | 919 | found eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 in store |
|
920 | 920 | found eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 in store |
|
921 | 921 | pulling largefiles for revision 2 |
|
922 | 922 | found eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 in store |
|
923 | 923 | 0 largefiles cached |
|
924 | 924 | |
|
925 | 925 | $ ls usercache-lfpull/* | sort |
|
926 | 926 | usercache-lfpull/1deebade43c8c498a3c8daddac0244dc55d1331d |
|
927 | 927 | usercache-lfpull/4669e532d5b2c093a78eca010077e708a071bb64 |
|
928 | 928 | |
|
929 | 929 | $ cd .. |
|
930 | 930 | |
|
931 | 931 | Rebasing between two repositories does not revert largefiles to old |
|
932 | 932 | revisions (this was a very bad bug that took a lot of work to fix). |
|
933 | 933 | |
|
934 | 934 | $ hg clone a d |
|
935 | 935 | updating to branch default |
|
936 | 936 | getting changed largefiles |
|
937 | 937 | 3 largefiles updated, 0 removed |
|
938 | 938 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
939 | 939 | $ cd b |
|
940 | 940 | $ echo large4-modified > sub/large4 |
|
941 | 941 | $ echo normal3-modified > normal3 |
|
942 | 942 | $ hg commit -m "modify normal file and largefile in repo b" |
|
943 | 943 | Invoking status precommit hook |
|
944 | 944 | M normal3 |
|
945 | 945 | M sub/large4 |
|
946 | 946 | $ cd ../d |
|
947 | 947 | $ echo large6-modified > sub2/large6 |
|
948 | 948 | $ echo normal4-modified > sub/normal4 |
|
949 | 949 | $ hg commit -m "modify normal file largefile in repo d" |
|
950 | 950 | Invoking status precommit hook |
|
951 | 951 | M sub/normal4 |
|
952 | 952 | M sub2/large6 |
|
953 | 953 | $ cd .. |
|
954 | 954 | $ hg clone d e |
|
955 | 955 | updating to branch default |
|
956 | 956 | getting changed largefiles |
|
957 | 957 | 3 largefiles updated, 0 removed |
|
958 | 958 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
959 | 959 | $ cd d |
|
960 | 960 | |
|
961 | 961 | More rebase testing, but also test that the largefiles are downloaded from |
|
962 | 962 | 'default-push' when no source is specified (issue3584). (The largefile from the |
|
963 | 963 | pulled revision is however not downloaded but found in the local cache.) |
|
964 | 964 | Largefiles are fetched for the new pulled revision, not for existing revisions, |
|
965 | 965 | rebased or not. |
|
966 | 966 | |
|
967 | 967 | $ [ ! -f .hg/largefiles/e166e74c7303192238d60af5a9c4ce9bef0b7928 ] |
|
968 | 968 | $ hg pull --rebase --all-largefiles --config paths.default-push=bogus/path --config paths.default=../b |
|
969 | 969 | pulling from $TESTTMP/b (glob) |
|
970 | 970 | searching for changes |
|
971 | 971 | adding changesets |
|
972 | 972 | adding manifests |
|
973 | 973 | adding file changes |
|
974 | 974 | added 1 changesets with 2 changes to 2 files (+1 heads) |
|
975 | 975 | Invoking status precommit hook |
|
976 | 976 | M sub/normal4 |
|
977 | 977 | M sub2/large6 |
|
978 | 978 | saved backup bundle to $TESTTMP/d/.hg/strip-backup/f574fb32bb45-backup.hg (glob) |
|
979 | 979 | 0 largefiles cached |
|
980 | 980 | nothing to rebase - working directory parent is also destination |
|
981 | 981 | $ [ -f .hg/largefiles/e166e74c7303192238d60af5a9c4ce9bef0b7928 ] |
|
982 | 982 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' |
|
983 | 983 | 9:598410d3eb9a modify normal file largefile in repo d |
|
984 | 984 | 8:a381d2c8c80e modify normal file and largefile in repo b |
|
985 | 985 | 7:daea875e9014 add/edit more largefiles |
|
986 | 986 | 6:4355d653f84f edit files yet again |
|
987 | 987 | 5:9d5af5072dbd edit files again |
|
988 | 988 | 4:74c02385b94c move files |
|
989 | 989 | 3:9e8fbc4bce62 copy files |
|
990 | 990 | 2:51a0ae4d5864 remove files |
|
991 | 991 | 1:ce8896473775 edit files |
|
992 | 992 | 0:30d30fe6a5be add files |
|
993 | 993 | $ cat normal3 |
|
994 | 994 | normal3-modified |
|
995 | 995 | $ cat sub/normal4 |
|
996 | 996 | normal4-modified |
|
997 | 997 | $ cat sub/large4 |
|
998 | 998 | large4-modified |
|
999 | 999 | $ cat sub2/large6 |
|
1000 | 1000 | large6-modified |
|
1001 | 1001 | $ cat sub2/large7 |
|
1002 | 1002 | large7 |
|
1003 | 1003 | $ cd ../e |
|
1004 | 1004 | $ hg pull ../b |
|
1005 | 1005 | pulling from ../b |
|
1006 | 1006 | searching for changes |
|
1007 | 1007 | adding changesets |
|
1008 | 1008 | adding manifests |
|
1009 | 1009 | adding file changes |
|
1010 | 1010 | added 1 changesets with 2 changes to 2 files (+1 heads) |
|
1011 | 1011 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
1012 | 1012 | $ hg rebase |
|
1013 | 1013 | Invoking status precommit hook |
|
1014 | 1014 | M sub/normal4 |
|
1015 | 1015 | M sub2/large6 |
|
1016 | 1016 | saved backup bundle to $TESTTMP/e/.hg/strip-backup/f574fb32bb45-backup.hg (glob) |
|
1017 | 1017 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' |
|
1018 | 1018 | 9:598410d3eb9a modify normal file largefile in repo d |
|
1019 | 1019 | 8:a381d2c8c80e modify normal file and largefile in repo b |
|
1020 | 1020 | 7:daea875e9014 add/edit more largefiles |
|
1021 | 1021 | 6:4355d653f84f edit files yet again |
|
1022 | 1022 | 5:9d5af5072dbd edit files again |
|
1023 | 1023 | 4:74c02385b94c move files |
|
1024 | 1024 | 3:9e8fbc4bce62 copy files |
|
1025 | 1025 | 2:51a0ae4d5864 remove files |
|
1026 | 1026 | 1:ce8896473775 edit files |
|
1027 | 1027 | 0:30d30fe6a5be add files |
|
1028 | 1028 | $ cat normal3 |
|
1029 | 1029 | normal3-modified |
|
1030 | 1030 | $ cat sub/normal4 |
|
1031 | 1031 | normal4-modified |
|
1032 | 1032 | $ cat sub/large4 |
|
1033 | 1033 | large4-modified |
|
1034 | 1034 | $ cat sub2/large6 |
|
1035 | 1035 | large6-modified |
|
1036 | 1036 | $ cat sub2/large7 |
|
1037 | 1037 | large7 |
|
1038 | 1038 | |
|
1039 | 1039 | Log on largefiles |
|
1040 | 1040 | |
|
1041 | 1041 | - same output |
|
1042 | 1042 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' .hglf/sub/large4 |
|
1043 | 1043 | 8:a381d2c8c80e modify normal file and largefile in repo b |
|
1044 | 1044 | 6:4355d653f84f edit files yet again |
|
1045 | 1045 | 5:9d5af5072dbd edit files again |
|
1046 | 1046 | 4:74c02385b94c move files |
|
1047 | 1047 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' sub/large4 |
|
1048 | 1048 | 8:a381d2c8c80e modify normal file and largefile in repo b |
|
1049 | 1049 | 6:4355d653f84f edit files yet again |
|
1050 | 1050 | 5:9d5af5072dbd edit files again |
|
1051 | 1051 | 4:74c02385b94c move files |
|
1052 | 1052 | |
|
1053 | 1053 | - .hglf only matches largefiles, without .hglf it matches 9 bco sub/normal |
|
1054 | 1054 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' .hglf/sub |
|
1055 | 1055 | 8:a381d2c8c80e modify normal file and largefile in repo b |
|
1056 | 1056 | 6:4355d653f84f edit files yet again |
|
1057 | 1057 | 5:9d5af5072dbd edit files again |
|
1058 | 1058 | 4:74c02385b94c move files |
|
1059 | 1059 | 1:ce8896473775 edit files |
|
1060 | 1060 | 0:30d30fe6a5be add files |
|
1061 | 1061 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' sub |
|
1062 | 1062 | 9:598410d3eb9a modify normal file largefile in repo d |
|
1063 | 1063 | 8:a381d2c8c80e modify normal file and largefile in repo b |
|
1064 | 1064 | 6:4355d653f84f edit files yet again |
|
1065 | 1065 | 5:9d5af5072dbd edit files again |
|
1066 | 1066 | 4:74c02385b94c move files |
|
1067 | 1067 | 1:ce8896473775 edit files |
|
1068 | 1068 | 0:30d30fe6a5be add files |
|
1069 | 1069 | |
|
1070 | 1070 | - globbing gives same result |
|
1071 | 1071 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' 'glob:sub/*' |
|
1072 | 1072 | 9:598410d3eb9a modify normal file largefile in repo d |
|
1073 | 1073 | 8:a381d2c8c80e modify normal file and largefile in repo b |
|
1074 | 1074 | 6:4355d653f84f edit files yet again |
|
1075 | 1075 | 5:9d5af5072dbd edit files again |
|
1076 | 1076 | 4:74c02385b94c move files |
|
1077 | 1077 | 1:ce8896473775 edit files |
|
1078 | 1078 | 0:30d30fe6a5be add files |
|
1079 | 1079 | |
|
1080 | 1080 | Rollback on largefiles. |
|
1081 | 1081 | |
|
1082 | 1082 | $ echo large4-modified-again > sub/large4 |
|
1083 | 1083 | $ hg commit -m "Modify large4 again" |
|
1084 | 1084 | Invoking status precommit hook |
|
1085 | 1085 | M sub/large4 |
|
1086 | 1086 | $ hg rollback |
|
1087 | 1087 | repository tip rolled back to revision 9 (undo commit) |
|
1088 | 1088 | working directory now based on revision 9 |
|
1089 | 1089 | $ hg st |
|
1090 | 1090 | M sub/large4 |
|
1091 | 1091 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' |
|
1092 | 1092 | 9:598410d3eb9a modify normal file largefile in repo d |
|
1093 | 1093 | 8:a381d2c8c80e modify normal file and largefile in repo b |
|
1094 | 1094 | 7:daea875e9014 add/edit more largefiles |
|
1095 | 1095 | 6:4355d653f84f edit files yet again |
|
1096 | 1096 | 5:9d5af5072dbd edit files again |
|
1097 | 1097 | 4:74c02385b94c move files |
|
1098 | 1098 | 3:9e8fbc4bce62 copy files |
|
1099 | 1099 | 2:51a0ae4d5864 remove files |
|
1100 | 1100 | 1:ce8896473775 edit files |
|
1101 | 1101 | 0:30d30fe6a5be add files |
|
1102 | 1102 | $ cat sub/large4 |
|
1103 | 1103 | large4-modified-again |
|
1104 | 1104 | |
|
1105 | 1105 | "update --check" refuses to update with uncommitted changes. |
|
1106 | 1106 | $ hg update --check 8 |
|
1107 | 1107 | abort: uncommitted changes |
|
1108 | 1108 | [255] |
|
1109 | 1109 | |
|
1110 | 1110 | "update --clean" leaves correct largefiles in working copy, even when there is |
|
1111 | 1111 | .orig files from revert in .hglf. |
|
1112 | 1112 | |
|
1113 | 1113 | $ echo mistake > sub2/large7 |
|
1114 | 1114 | $ hg revert sub2/large7 |
|
1115 | 1115 | $ hg -q update --clean -r null |
|
1116 | 1116 | $ hg update --clean |
|
1117 | 1117 | getting changed largefiles |
|
1118 | 1118 | 3 largefiles updated, 0 removed |
|
1119 | 1119 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1120 | 1120 | $ cat normal3 |
|
1121 | 1121 | normal3-modified |
|
1122 | 1122 | $ cat sub/normal4 |
|
1123 | 1123 | normal4-modified |
|
1124 | 1124 | $ cat sub/large4 |
|
1125 | 1125 | large4-modified |
|
1126 | 1126 | $ cat sub2/large6 |
|
1127 | 1127 | large6-modified |
|
1128 | 1128 | $ cat sub2/large7 |
|
1129 | 1129 | large7 |
|
1130 | 1130 | $ cat sub2/large7.orig |
|
1131 | 1131 | mistake |
|
1132 | 1132 | $ cat .hglf/sub2/large7.orig |
|
1133 | 1133 | 9dbfb2c79b1c40981b258c3efa1b10b03f18ad31 |
|
1134 | 1134 | |
|
1135 | 1135 | demonstrate misfeature: .orig file is overwritten on every update -C, |
|
1136 | 1136 | also when clean: |
|
1137 | 1137 | $ hg update --clean |
|
1138 | 1138 | getting changed largefiles |
|
1139 | 1139 | 0 largefiles updated, 0 removed |
|
1140 | 1140 | 0 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1141 | 1141 | $ cat sub2/large7.orig |
|
1142 | 1142 | large7 |
|
1143 | 1143 | $ rm sub2/large7.orig .hglf/sub2/large7.orig |
|
1144 | 1144 | |
|
1145 | 1145 | Now "update check" is happy. |
|
1146 | 1146 | $ hg update --check 8 |
|
1147 | 1147 | getting changed largefiles |
|
1148 | 1148 | 1 largefiles updated, 0 removed |
|
1149 | 1149 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1150 | 1150 | $ hg update --check |
|
1151 | 1151 | getting changed largefiles |
|
1152 | 1152 | 1 largefiles updated, 0 removed |
|
1153 | 1153 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1154 | 1154 | |
|
1155 | 1155 | Test removing empty largefiles directories on update |
|
1156 | 1156 | $ test -d sub2 && echo "sub2 exists" |
|
1157 | 1157 | sub2 exists |
|
1158 | 1158 | $ hg update -q null |
|
1159 | 1159 | $ test -d sub2 && echo "error: sub2 should not exist anymore" |
|
1160 | 1160 | [1] |
|
1161 | 1161 | $ hg update -q |
|
1162 | 1162 | |
|
1163 | 1163 | Test hg remove removes empty largefiles directories |
|
1164 | 1164 | $ test -d sub2 && echo "sub2 exists" |
|
1165 | 1165 | sub2 exists |
|
1166 | 1166 | $ hg remove sub2/* |
|
1167 | 1167 | $ test -d sub2 && echo "error: sub2 should not exist anymore" |
|
1168 | 1168 | [1] |
|
1169 | 1169 | $ hg revert sub2/large6 sub2/large7 |
|
1170 | 1170 | |
|
1171 | 1171 | "revert" works on largefiles (and normal files too). |
|
1172 | 1172 | $ echo hack3 >> normal3 |
|
1173 | 1173 | $ echo hack4 >> sub/normal4 |
|
1174 | 1174 | $ echo hack4 >> sub/large4 |
|
1175 | 1175 | $ rm sub2/large6 |
|
1176 | 1176 | $ hg revert sub2/large6 |
|
1177 | 1177 | $ hg rm sub2/large6 |
|
1178 | 1178 | $ echo new >> sub2/large8 |
|
1179 | 1179 | $ hg add --large sub2/large8 |
|
1180 | 1180 | # XXX we don't really want to report that we're reverting the standin; |
|
1181 | 1181 | # that's just an implementation detail. But I don't see an obvious fix. ;-( |
|
1182 | 1182 | $ hg revert sub |
|
1183 | 1183 | reverting .hglf/sub/large4 (glob) |
|
1184 | 1184 | reverting sub/normal4 (glob) |
|
1185 | 1185 | $ hg status |
|
1186 | 1186 | M normal3 |
|
1187 | 1187 | A sub2/large8 |
|
1188 | 1188 | R sub2/large6 |
|
1189 | 1189 | ? sub/large4.orig |
|
1190 | 1190 | ? sub/normal4.orig |
|
1191 | 1191 | $ cat sub/normal4 |
|
1192 | 1192 | normal4-modified |
|
1193 | 1193 | $ cat sub/large4 |
|
1194 | 1194 | large4-modified |
|
1195 | 1195 | $ hg revert -a --no-backup |
|
1196 | 1196 | undeleting .hglf/sub2/large6 (glob) |
|
1197 | 1197 | forgetting .hglf/sub2/large8 (glob) |
|
1198 | 1198 | reverting normal3 |
|
1199 | 1199 | $ hg status |
|
1200 | 1200 | ? sub/large4.orig |
|
1201 | 1201 | ? sub/normal4.orig |
|
1202 | 1202 | ? sub2/large8 |
|
1203 | 1203 | $ cat normal3 |
|
1204 | 1204 | normal3-modified |
|
1205 | 1205 | $ cat sub2/large6 |
|
1206 | 1206 | large6-modified |
|
1207 | 1207 | $ rm sub/*.orig sub2/large8 |
|
1208 | 1208 | |
|
1209 | 1209 | revert some files to an older revision |
|
1210 | 1210 | $ hg revert --no-backup -r 8 sub2 |
|
1211 | 1211 | reverting .hglf/sub2/large6 (glob) |
|
1212 | 1212 | $ cat sub2/large6 |
|
1213 | 1213 | large6 |
|
1214 | 1214 | $ hg revert --no-backup -C -r '.^' sub2 |
|
1215 | 1215 | reverting .hglf/sub2/large6 (glob) |
|
1216 | 1216 | $ hg revert --no-backup sub2 |
|
1217 | 1217 | reverting .hglf/sub2/large6 (glob) |
|
1218 | 1218 | $ hg status |
|
1219 | 1219 | |
|
1220 | 1220 | "verify --large" actually verifies largefiles |
|
1221 | 1221 | |
|
1222 | 1222 | - Where Do We Come From? What Are We? Where Are We Going? |
|
1223 | 1223 | $ pwd |
|
1224 | 1224 | $TESTTMP/e |
|
1225 | 1225 | $ hg paths |
|
1226 | 1226 | default = $TESTTMP/d (glob) |
|
1227 | 1227 | |
|
1228 | 1228 | $ hg verify --large |
|
1229 | 1229 | checking changesets |
|
1230 | 1230 | checking manifests |
|
1231 | 1231 | crosschecking files in changesets and manifests |
|
1232 | 1232 | checking files |
|
1233 | 1233 | 10 files, 10 changesets, 28 total revisions |
|
1234 | 1234 | searching 1 changesets for largefiles |
|
1235 | 1235 | verified existence of 3 revisions of 3 largefiles |
|
1236 | 1236 | |
|
1237 | 1237 | - introduce missing blob in local store repo and make sure that this is caught: |
|
1238 | 1238 | $ mv $TESTTMP/d/.hg/largefiles/e166e74c7303192238d60af5a9c4ce9bef0b7928 . |
|
1239 | 1239 | $ hg verify --large |
|
1240 | 1240 | checking changesets |
|
1241 | 1241 | checking manifests |
|
1242 | 1242 | crosschecking files in changesets and manifests |
|
1243 | 1243 | checking files |
|
1244 | 1244 | 10 files, 10 changesets, 28 total revisions |
|
1245 | 1245 | searching 1 changesets for largefiles |
|
1246 | 1246 | changeset 9:598410d3eb9a: sub/large4 references missing $TESTTMP/d/.hg/largefiles/e166e74c7303192238d60af5a9c4ce9bef0b7928 (glob) |
|
1247 | 1247 | verified existence of 3 revisions of 3 largefiles |
|
1248 | 1248 | [1] |
|
1249 | 1249 | |
|
1250 | 1250 | - introduce corruption and make sure that it is caught when checking content: |
|
1251 | 1251 | $ echo '5 cents' > $TESTTMP/d/.hg/largefiles/e166e74c7303192238d60af5a9c4ce9bef0b7928 |
|
1252 | 1252 | $ hg verify -q --large --lfc |
|
1253 | 1253 | changeset 9:598410d3eb9a: sub/large4 references corrupted $TESTTMP/d/.hg/largefiles/e166e74c7303192238d60af5a9c4ce9bef0b7928 (glob) |
|
1254 | 1254 | [1] |
|
1255 | 1255 | |
|
1256 | 1256 | - cleanup |
|
1257 | 1257 | $ mv e166e74c7303192238d60af5a9c4ce9bef0b7928 $TESTTMP/d/.hg/largefiles/ |
|
1258 | 1258 | |
|
1259 | 1259 | - verifying all revisions will fail because we didn't clone all largefiles to d: |
|
1260 | 1260 | $ echo 'T-shirt' > $TESTTMP/d/.hg/largefiles/eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 |
|
1261 | 1261 | $ hg verify -q --lfa --lfc |
|
1262 | 1262 | changeset 0:30d30fe6a5be: large1 references missing $TESTTMP/d/.hg/largefiles/4669e532d5b2c093a78eca010077e708a071bb64 (glob) |
|
1263 | 1263 | changeset 0:30d30fe6a5be: sub/large2 references missing $TESTTMP/d/.hg/largefiles/1deebade43c8c498a3c8daddac0244dc55d1331d (glob) |
|
1264 | 1264 | changeset 1:ce8896473775: large1 references missing $TESTTMP/d/.hg/largefiles/5f78770c0e77ba4287ad6ef3071c9bf9c379742f (glob) |
|
1265 | 1265 | changeset 1:ce8896473775: sub/large2 references corrupted $TESTTMP/d/.hg/largefiles/eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 (glob) |
|
1266 | 1266 | changeset 3:9e8fbc4bce62: large1 references corrupted $TESTTMP/d/.hg/largefiles/eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 (glob) |
|
1267 | 1267 | changeset 4:74c02385b94c: large3 references corrupted $TESTTMP/d/.hg/largefiles/eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 (glob) |
|
1268 | 1268 | changeset 4:74c02385b94c: sub/large4 references corrupted $TESTTMP/d/.hg/largefiles/eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 (glob) |
|
1269 | 1269 | changeset 5:9d5af5072dbd: large3 references missing $TESTTMP/d/.hg/largefiles/baaf12afde9d8d67f25dab6dced0d2bf77dba47c (glob) |
|
1270 | 1270 | changeset 5:9d5af5072dbd: sub/large4 references missing $TESTTMP/d/.hg/largefiles/aeb2210d19f02886dde00dac279729a48471e2f9 (glob) |
|
1271 | 1271 | changeset 6:4355d653f84f: large3 references missing $TESTTMP/d/.hg/largefiles/7838695e10da2bb75ac1156565f40a2595fa2fa0 (glob) |
|
1272 | 1272 | [1] |
|
1273 | 1273 | |
|
1274 | 1274 | - cleanup |
|
1275 | 1275 | $ rm $TESTTMP/d/.hg/largefiles/eb7338044dc27f9bc59b8dd5a246b065ead7a9c4 |
|
1276 | 1276 | $ rm -f .hglf/sub/*.orig |
|
1277 | 1277 | |
|
1278 | 1278 | Update to revision with missing largefile - and make sure it really is missing |
|
1279 | 1279 | |
|
1280 | 1280 | $ rm ${USERCACHE}/7838695e10da2bb75ac1156565f40a2595fa2fa0 |
|
1281 | 1281 | $ hg up -r 6 |
|
1282 | 1282 | getting changed largefiles |
|
1283 | 1283 | large3: largefile 7838695e10da2bb75ac1156565f40a2595fa2fa0 not available from file:/*/$TESTTMP/d (glob) |
|
1284 | 1284 | 1 largefiles updated, 2 removed |
|
1285 | 1285 | 4 files updated, 0 files merged, 2 files removed, 0 files unresolved |
|
1286 | 1286 | $ rm normal3 |
|
1287 | 1287 | $ echo >> sub/normal4 |
|
1288 | 1288 | $ hg ci -m 'commit with missing files' |
|
1289 | 1289 | Invoking status precommit hook |
|
1290 | 1290 | M sub/normal4 |
|
1291 | 1291 | ! large3 |
|
1292 | 1292 | ! normal3 |
|
1293 | 1293 | created new head |
|
1294 | 1294 | $ hg st |
|
1295 | 1295 | ! large3 |
|
1296 | 1296 | ! normal3 |
|
1297 | 1297 | $ hg up -r. |
|
1298 | 1298 | 0 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1299 | 1299 | $ hg st |
|
1300 | 1300 | ! large3 |
|
1301 | 1301 | ! normal3 |
|
1302 | 1302 | $ hg up -Cr. |
|
1303 | 1303 | getting changed largefiles |
|
1304 | 1304 | large3: largefile 7838695e10da2bb75ac1156565f40a2595fa2fa0 not available from file:/*/$TESTTMP/d (glob) |
|
1305 | 1305 | 0 largefiles updated, 0 removed |
|
1306 | 1306 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1307 | 1307 | $ hg st |
|
1308 | 1308 | ! large3 |
|
1309 | 1309 | $ hg rollback |
|
1310 | 1310 | repository tip rolled back to revision 9 (undo commit) |
|
1311 | 1311 | working directory now based on revision 6 |
|
1312 | 1312 | |
|
1313 | 1313 | Merge with revision with missing largefile - and make sure it tries to fetch it. |
|
1314 | 1314 | |
|
1315 | 1315 | $ hg up -Cqr null |
|
1316 | 1316 | $ echo f > f |
|
1317 | 1317 | $ hg ci -Am branch |
|
1318 | 1318 | adding f |
|
1319 | 1319 | Invoking status precommit hook |
|
1320 | 1320 | A f |
|
1321 | 1321 | created new head |
|
1322 | 1322 | $ hg merge -r 6 |
|
1323 | 1323 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1324 | 1324 | (branch merge, don't forget to commit) |
|
1325 | 1325 | getting changed largefiles |
|
1326 | 1326 | large3: largefile 7838695e10da2bb75ac1156565f40a2595fa2fa0 not available from file:/*/$TESTTMP/d (glob) |
|
1327 | 1327 | 1 largefiles updated, 0 removed |
|
1328 | 1328 | |
|
1329 | 1329 | $ hg rollback -q |
|
1330 | 1330 | $ hg up -Cq |
|
1331 | 1331 | |
|
1332 | 1332 | Pulling 0 revisions with --all-largefiles should not fetch for all revisions |
|
1333 | 1333 | |
|
1334 | 1334 | $ hg pull --all-largefiles |
|
1335 | 1335 | pulling from $TESTTMP/d (glob) |
|
1336 | 1336 | searching for changes |
|
1337 | 1337 | no changes found |
|
1338 | 1338 | |
|
1339 | 1339 | Merging does not revert to old versions of largefiles and also check |
|
1340 | 1340 | that merging after having pulled from a non-default remote works |
|
1341 | 1341 | correctly. |
|
1342 | 1342 | |
|
1343 | 1343 | $ cd .. |
|
1344 | 1344 | $ hg clone -r 7 e temp |
|
1345 | 1345 | adding changesets |
|
1346 | 1346 | adding manifests |
|
1347 | 1347 | adding file changes |
|
1348 | 1348 | added 8 changesets with 24 changes to 10 files |
|
1349 | 1349 | updating to branch default |
|
1350 | 1350 | getting changed largefiles |
|
1351 | 1351 | 3 largefiles updated, 0 removed |
|
1352 | 1352 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1353 | 1353 | $ hg clone temp f |
|
1354 | 1354 | updating to branch default |
|
1355 | 1355 | getting changed largefiles |
|
1356 | 1356 | 3 largefiles updated, 0 removed |
|
1357 | 1357 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1358 | 1358 | # Delete the largefiles in the largefiles system cache so that we have an |
|
1359 | 1359 | # opportunity to test that caching after a pull works. |
|
1360 | 1360 | $ rm "${USERCACHE}"/* |
|
1361 | 1361 | $ cd f |
|
1362 | 1362 | $ echo "large4-merge-test" > sub/large4 |
|
1363 | 1363 | $ hg commit -m "Modify large4 to test merge" |
|
1364 | 1364 | Invoking status precommit hook |
|
1365 | 1365 | M sub/large4 |
|
1366 | 1366 | # Test --cache-largefiles flag |
|
1367 | 1367 | $ hg pull --lfrev 'heads(pulled())' ../e |
|
1368 | 1368 | pulling from ../e |
|
1369 | 1369 | searching for changes |
|
1370 | 1370 | adding changesets |
|
1371 | 1371 | adding manifests |
|
1372 | 1372 | adding file changes |
|
1373 | 1373 | added 2 changesets with 4 changes to 4 files (+1 heads) |
|
1374 | 1374 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
1375 | 1375 | 2 largefiles cached |
|
1376 | 1376 | $ hg merge |
|
1377 | 1377 | largefile sub/large4 has a merge conflict |
|
1378 | 1378 | ancestor was 971fb41e78fea4f8e0ba5244784239371cb00591 |
|
1379 | 1379 | keep (l)ocal d846f26643bfa8ec210be40cc93cc6b7ff1128ea or |
|
1380 | 1380 | take (o)ther e166e74c7303192238d60af5a9c4ce9bef0b7928? l |
|
1381 | 1381 | 3 files updated, 1 files merged, 0 files removed, 0 files unresolved |
|
1382 | 1382 | (branch merge, don't forget to commit) |
|
1383 | 1383 | getting changed largefiles |
|
1384 | 1384 | 1 largefiles updated, 0 removed |
|
1385 | 1385 | $ hg commit -m "Merge repos e and f" |
|
1386 | 1386 | Invoking status precommit hook |
|
1387 | 1387 | M normal3 |
|
1388 | 1388 | M sub/normal4 |
|
1389 | 1389 | M sub2/large6 |
|
1390 | 1390 | $ cat normal3 |
|
1391 | 1391 | normal3-modified |
|
1392 | 1392 | $ cat sub/normal4 |
|
1393 | 1393 | normal4-modified |
|
1394 | 1394 | $ cat sub/large4 |
|
1395 | 1395 | large4-merge-test |
|
1396 | 1396 | $ cat sub2/large6 |
|
1397 | 1397 | large6-modified |
|
1398 | 1398 | $ cat sub2/large7 |
|
1399 | 1399 | large7 |
|
1400 | 1400 | |
|
1401 | 1401 | Test status after merging with a branch that introduces a new largefile: |
|
1402 | 1402 | |
|
1403 | 1403 | $ echo large > large |
|
1404 | 1404 | $ hg add --large large |
|
1405 | 1405 | $ hg commit -m 'add largefile' |
|
1406 | 1406 | Invoking status precommit hook |
|
1407 | 1407 | A large |
|
1408 | 1408 | $ hg update -q ".^" |
|
1409 | 1409 | $ echo change >> normal3 |
|
1410 | 1410 | $ hg commit -m 'some change' |
|
1411 | 1411 | Invoking status precommit hook |
|
1412 | 1412 | M normal3 |
|
1413 | 1413 | created new head |
|
1414 | 1414 | $ hg merge |
|
1415 | 1415 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1416 | 1416 | (branch merge, don't forget to commit) |
|
1417 | 1417 | getting changed largefiles |
|
1418 | 1418 | 1 largefiles updated, 0 removed |
|
1419 | 1419 | $ hg status |
|
1420 | 1420 | M large |
|
1421 | 1421 | |
|
1422 | 1422 | - make sure update of merge with removed largefiles fails as expected |
|
1423 | 1423 | $ hg rm sub2/large6 |
|
1424 | 1424 | $ hg up -r. |
|
1425 | 1425 | abort: outstanding uncommitted merges |
|
1426 | 1426 | [255] |
|
1427 | 1427 | |
|
1428 | 1428 | - revert should be able to revert files introduced in a pending merge |
|
1429 | 1429 | $ hg revert --all -r . |
|
1430 | 1430 | removing .hglf/large (glob) |
|
1431 | 1431 | undeleting .hglf/sub2/large6 (glob) |
|
1432 | 1432 | |
|
1433 | 1433 | Test that a normal file and a largefile with the same name and path cannot |
|
1434 | 1434 | coexist. |
|
1435 | 1435 | |
|
1436 | 1436 | $ rm sub2/large7 |
|
1437 | 1437 | $ echo "largeasnormal" > sub2/large7 |
|
1438 | 1438 | $ hg add sub2/large7 |
|
1439 | 1439 | sub2/large7 already a largefile |
|
1440 | 1440 | |
|
1441 | 1441 | Test that transplanting a largefile change works correctly. |
|
1442 | 1442 | |
|
1443 | 1443 | $ cd .. |
|
1444 | 1444 | $ hg clone -r 8 d g |
|
1445 | 1445 | adding changesets |
|
1446 | 1446 | adding manifests |
|
1447 | 1447 | adding file changes |
|
1448 | 1448 | added 9 changesets with 26 changes to 10 files |
|
1449 | 1449 | updating to branch default |
|
1450 | 1450 | getting changed largefiles |
|
1451 | 1451 | 3 largefiles updated, 0 removed |
|
1452 | 1452 | 5 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1453 | 1453 | $ cd g |
|
1454 | 1454 | $ hg transplant -s ../d 598410d3eb9a |
|
1455 | 1455 | searching for changes |
|
1456 | 1456 | searching for changes |
|
1457 | 1457 | adding changesets |
|
1458 | 1458 | adding manifests |
|
1459 | 1459 | adding file changes |
|
1460 | 1460 | added 1 changesets with 2 changes to 2 files |
|
1461 | 1461 | getting changed largefiles |
|
1462 | 1462 | 1 largefiles updated, 0 removed |
|
1463 | 1463 | $ hg log --template '{rev}:{node|short} {desc|firstline}\n' |
|
1464 | 1464 | 9:598410d3eb9a modify normal file largefile in repo d |
|
1465 | 1465 | 8:a381d2c8c80e modify normal file and largefile in repo b |
|
1466 | 1466 | 7:daea875e9014 add/edit more largefiles |
|
1467 | 1467 | 6:4355d653f84f edit files yet again |
|
1468 | 1468 | 5:9d5af5072dbd edit files again |
|
1469 | 1469 | 4:74c02385b94c move files |
|
1470 | 1470 | 3:9e8fbc4bce62 copy files |
|
1471 | 1471 | 2:51a0ae4d5864 remove files |
|
1472 | 1472 | 1:ce8896473775 edit files |
|
1473 | 1473 | 0:30d30fe6a5be add files |
|
1474 | 1474 | $ cat normal3 |
|
1475 | 1475 | normal3-modified |
|
1476 | 1476 | $ cat sub/normal4 |
|
1477 | 1477 | normal4-modified |
|
1478 | 1478 | $ cat sub/large4 |
|
1479 | 1479 | large4-modified |
|
1480 | 1480 | $ cat sub2/large6 |
|
1481 | 1481 | large6-modified |
|
1482 | 1482 | $ cat sub2/large7 |
|
1483 | 1483 | large7 |
|
1484 | 1484 | |
|
1485 | 1485 | Cat a largefile |
|
1486 | 1486 | $ hg cat normal3 |
|
1487 | 1487 | normal3-modified |
|
1488 | 1488 | $ hg cat sub/large4 |
|
1489 | 1489 | large4-modified |
|
1490 | 1490 | $ rm "${USERCACHE}"/* |
|
1491 | 1491 | $ hg cat -r a381d2c8c80e -o cat.out sub/large4 |
|
1492 | 1492 | $ cat cat.out |
|
1493 | 1493 | large4-modified |
|
1494 | 1494 | $ rm cat.out |
|
1495 | 1495 | $ hg cat -r a381d2c8c80e normal3 |
|
1496 | 1496 | normal3-modified |
|
1497 | 1497 | $ hg cat -r '.^' normal3 |
|
1498 | 1498 | normal3-modified |
|
1499 | 1499 | $ hg cat -r '.^' sub/large4 doesntexist |
|
1500 | 1500 | large4-modified |
|
1501 | 1501 | doesntexist: no such file in rev a381d2c8c80e |
|
1502 | 1502 | $ hg --cwd sub cat -r '.^' large4 |
|
1503 | 1503 | large4-modified |
|
1504 | 1504 | $ hg --cwd sub cat -r '.^' ../normal3 |
|
1505 | 1505 | normal3-modified |
|
1506 | 1506 | |
|
1507 | 1507 | Test that renaming a largefile results in correct output for status |
|
1508 | 1508 | |
|
1509 | 1509 | $ hg rename sub/large4 large4-renamed |
|
1510 | 1510 | $ hg commit -m "test rename output" |
|
1511 | 1511 | Invoking status precommit hook |
|
1512 | 1512 | A large4-renamed |
|
1513 | 1513 | R sub/large4 |
|
1514 | 1514 | $ cat large4-renamed |
|
1515 | 1515 | large4-modified |
|
1516 | 1516 | $ cd sub2 |
|
1517 | 1517 | $ hg rename large6 large6-renamed |
|
1518 | 1518 | $ hg st |
|
1519 | 1519 | A sub2/large6-renamed |
|
1520 | 1520 | R sub2/large6 |
|
1521 | 1521 | $ cd .. |
|
1522 | 1522 | |
|
1523 | 1523 | Test --normal flag |
|
1524 | 1524 | |
|
1525 | 1525 | $ dd if=/dev/zero bs=2k count=11k > new-largefile 2> /dev/null |
|
1526 | 1526 | $ hg add --normal --large new-largefile |
|
1527 | 1527 | abort: --normal cannot be used with --large |
|
1528 | 1528 | [255] |
|
1529 | 1529 | $ hg add --normal new-largefile |
|
1530 | 1530 | new-largefile: up to 69 MB of RAM may be required to manage this file |
|
1531 | 1531 | (use 'hg revert new-largefile' to cancel the pending addition) |
|
1532 | 1532 | $ cd .. |
|
1533 | 1533 | |
|
1534 | 1534 | #if serve |
|
1535 | 1535 | vanilla clients not locked out from largefiles servers on vanilla repos |
|
1536 | 1536 | $ mkdir r1 |
|
1537 | 1537 | $ cd r1 |
|
1538 | 1538 | $ hg init |
|
1539 | 1539 | $ echo c1 > f1 |
|
1540 | 1540 | $ hg add f1 |
|
1541 | 1541 | $ hg commit -m "m1" |
|
1542 | 1542 | Invoking status precommit hook |
|
1543 | 1543 | A f1 |
|
1544 | 1544 | $ cd .. |
|
1545 | 1545 | $ hg serve -R r1 -d -p $HGPORT --pid-file hg.pid |
|
1546 | 1546 | $ cat hg.pid >> $DAEMON_PIDS |
|
1547 | 1547 | $ hg --config extensions.largefiles=! clone http://localhost:$HGPORT r2 |
|
1548 | 1548 | requesting all changes |
|
1549 | 1549 | adding changesets |
|
1550 | 1550 | adding manifests |
|
1551 | 1551 | adding file changes |
|
1552 | 1552 | added 1 changesets with 1 changes to 1 files |
|
1553 | 1553 | updating to branch default |
|
1554 | 1554 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1555 | 1555 | |
|
1556 | 1556 | largefiles clients still work with vanilla servers |
|
1557 | 1557 | $ hg --config extensions.largefiles=! serve -R r1 -d -p $HGPORT1 --pid-file hg.pid |
|
1558 | 1558 | $ cat hg.pid >> $DAEMON_PIDS |
|
1559 | 1559 | $ hg clone http://localhost:$HGPORT1 r3 |
|
1560 | 1560 | requesting all changes |
|
1561 | 1561 | adding changesets |
|
1562 | 1562 | adding manifests |
|
1563 | 1563 | adding file changes |
|
1564 | 1564 | added 1 changesets with 1 changes to 1 files |
|
1565 | 1565 | updating to branch default |
|
1566 | 1566 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1567 | 1567 | #endif |
|
1568 | 1568 | |
|
1569 | 1569 | |
|
1570 | 1570 | vanilla clients locked out from largefiles http repos |
|
1571 | 1571 | $ mkdir r4 |
|
1572 | 1572 | $ cd r4 |
|
1573 | 1573 | $ hg init |
|
1574 | 1574 | $ echo c1 > f1 |
|
1575 | 1575 | $ hg add --large f1 |
|
1576 | 1576 | $ hg commit -m "m1" |
|
1577 | 1577 | Invoking status precommit hook |
|
1578 | 1578 | A f1 |
|
1579 | 1579 | $ cd .. |
|
1580 | 1580 | |
|
1581 | 1581 | largefiles can be pushed locally (issue3583) |
|
1582 | 1582 | $ hg init dest |
|
1583 | 1583 | $ cd r4 |
|
1584 | 1584 | $ hg outgoing ../dest |
|
1585 | 1585 | comparing with ../dest |
|
1586 | 1586 | searching for changes |
|
1587 | 1587 | changeset: 0:639881c12b4c |
|
1588 | 1588 | tag: tip |
|
1589 | 1589 | user: test |
|
1590 | 1590 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
1591 | 1591 | summary: m1 |
|
1592 | 1592 | |
|
1593 | 1593 | $ hg push ../dest |
|
1594 | 1594 | pushing to ../dest |
|
1595 | 1595 | searching for changes |
|
1596 | 1596 | searching for changes |
|
1597 | 1597 | adding changesets |
|
1598 | 1598 | adding manifests |
|
1599 | 1599 | adding file changes |
|
1600 | 1600 | added 1 changesets with 1 changes to 1 files |
|
1601 | 1601 | |
|
1602 | 1602 | exit code with nothing outgoing (issue3611) |
|
1603 | 1603 | $ hg outgoing ../dest |
|
1604 | 1604 | comparing with ../dest |
|
1605 | 1605 | searching for changes |
|
1606 | 1606 | no changes found |
|
1607 | 1607 | [1] |
|
1608 | 1608 | $ cd .. |
|
1609 | 1609 | |
|
1610 | 1610 | #if serve |
|
1611 | 1611 | $ hg serve -R r4 -d -p $HGPORT2 --pid-file hg.pid |
|
1612 | 1612 | $ cat hg.pid >> $DAEMON_PIDS |
|
1613 | 1613 | $ hg --config extensions.largefiles=! clone http://localhost:$HGPORT2 r5 |
|
1614 | 1614 | abort: remote error: |
|
1615 | 1615 | |
|
1616 | 1616 | This repository uses the largefiles extension. |
|
1617 | 1617 | |
|
1618 | 1618 | Please enable it in your Mercurial config file. |
|
1619 | 1619 | [255] |
|
1620 | 1620 | |
|
1621 | 1621 | used all HGPORTs, kill all daemons |
|
1622 | 1622 | $ "$TESTDIR/killdaemons.py" $DAEMON_PIDS |
|
1623 | 1623 | #endif |
|
1624 | 1624 | |
|
1625 | 1625 | vanilla clients locked out from largefiles ssh repos |
|
1626 | 1626 | $ hg --config extensions.largefiles=! clone -e "python \"$TESTDIR/dummyssh\"" ssh://user@dummy/r4 r5 |
|
1627 | 1627 | abort: remote error: |
|
1628 | 1628 | |
|
1629 | 1629 | This repository uses the largefiles extension. |
|
1630 | 1630 | |
|
1631 | 1631 | Please enable it in your Mercurial config file. |
|
1632 | 1632 | [255] |
|
1633 | 1633 | |
|
1634 | 1634 | #if serve |
|
1635 | 1635 | |
|
1636 | 1636 | largefiles clients refuse to push largefiles repos to vanilla servers |
|
1637 | 1637 | $ mkdir r6 |
|
1638 | 1638 | $ cd r6 |
|
1639 | 1639 | $ hg init |
|
1640 | 1640 | $ echo c1 > f1 |
|
1641 | 1641 | $ hg add f1 |
|
1642 | 1642 | $ hg commit -m "m1" |
|
1643 | 1643 | Invoking status precommit hook |
|
1644 | 1644 | A f1 |
|
1645 | 1645 | $ cat >> .hg/hgrc <<! |
|
1646 | 1646 | > [web] |
|
1647 | 1647 | > push_ssl = false |
|
1648 | 1648 | > allow_push = * |
|
1649 | 1649 | > ! |
|
1650 | 1650 | $ cd .. |
|
1651 | 1651 | $ hg clone r6 r7 |
|
1652 | 1652 | updating to branch default |
|
1653 | 1653 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1654 | 1654 | $ cd r7 |
|
1655 | 1655 | $ echo c2 > f2 |
|
1656 | 1656 | $ hg add --large f2 |
|
1657 | 1657 | $ hg commit -m "m2" |
|
1658 | 1658 | Invoking status precommit hook |
|
1659 | 1659 | A f2 |
|
1660 | 1660 | $ hg --config extensions.largefiles=! -R ../r6 serve -d -p $HGPORT --pid-file ../hg.pid |
|
1661 | 1661 | $ cat ../hg.pid >> $DAEMON_PIDS |
|
1662 | 1662 | $ hg push http://localhost:$HGPORT |
|
1663 | 1663 | pushing to http://localhost:$HGPORT/ |
|
1664 | 1664 | searching for changes |
|
1665 | 1665 | abort: http://localhost:$HGPORT/ does not appear to be a largefile store |
|
1666 | 1666 | [255] |
|
1667 | 1667 | $ cd .. |
|
1668 | 1668 | |
|
1669 | 1669 | putlfile errors are shown (issue3123) |
|
1670 | 1670 | Corrupt the cached largefile in r7 and move it out of the servers usercache |
|
1671 | 1671 | $ mv r7/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 . |
|
1672 | 1672 | $ echo 'client side corruption' > r7/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 |
|
1673 | 1673 | $ rm "$USERCACHE/4cdac4d8b084d0b599525cf732437fb337d422a8" |
|
1674 | 1674 | $ hg init empty |
|
1675 | 1675 | $ hg serve -R empty -d -p $HGPORT1 --pid-file hg.pid \ |
|
1676 | 1676 | > --config 'web.allow_push=*' --config web.push_ssl=False |
|
1677 | 1677 | $ cat hg.pid >> $DAEMON_PIDS |
|
1678 | 1678 | $ hg push -R r7 http://localhost:$HGPORT1 |
|
1679 | 1679 | pushing to http://localhost:$HGPORT1/ |
|
1680 | 1680 | searching for changes |
|
1681 | 1681 | remote: largefiles: failed to put 4cdac4d8b084d0b599525cf732437fb337d422a8 into store: largefile contents do not match hash |
|
1682 | 1682 | abort: remotestore: could not put $TESTTMP/r7/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 to remote store http://localhost:$HGPORT1/ (glob) |
|
1683 | 1683 | [255] |
|
1684 | 1684 | $ mv 4cdac4d8b084d0b599525cf732437fb337d422a8 r7/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 |
|
1685 | 1685 | Push of file that exists on server but is corrupted - magic healing would be nice ... but too magic |
|
1686 | 1686 | $ echo "server side corruption" > empty/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 |
|
1687 | 1687 | $ hg push -R r7 http://localhost:$HGPORT1 |
|
1688 | 1688 | pushing to http://localhost:$HGPORT1/ |
|
1689 | 1689 | searching for changes |
|
1690 | 1690 | searching for changes |
|
1691 | 1691 | remote: adding changesets |
|
1692 | 1692 | remote: adding manifests |
|
1693 | 1693 | remote: adding file changes |
|
1694 | 1694 | remote: added 2 changesets with 2 changes to 2 files |
|
1695 | 1695 | $ cat empty/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 |
|
1696 | 1696 | server side corruption |
|
1697 | 1697 | $ rm -rf empty |
|
1698 | 1698 | |
|
1699 | 1699 | Push a largefiles repository to a served empty repository |
|
1700 | 1700 | $ hg init r8 |
|
1701 | 1701 | $ echo c3 > r8/f1 |
|
1702 | 1702 | $ hg add --large r8/f1 -R r8 |
|
1703 | 1703 | $ hg commit -m "m1" -R r8 |
|
1704 | 1704 | Invoking status precommit hook |
|
1705 | 1705 | A f1 |
|
1706 | 1706 | $ hg init empty |
|
1707 | 1707 | $ hg serve -R empty -d -p $HGPORT2 --pid-file hg.pid \ |
|
1708 | 1708 | > --config 'web.allow_push=*' --config web.push_ssl=False |
|
1709 | 1709 | $ cat hg.pid >> $DAEMON_PIDS |
|
1710 | 1710 | $ rm "${USERCACHE}"/* |
|
1711 | 1711 | $ hg push -R r8 http://localhost:$HGPORT2/#default |
|
1712 | 1712 | pushing to http://localhost:$HGPORT2/ |
|
1713 | 1713 | searching for changes |
|
1714 | 1714 | searching for changes |
|
1715 | 1715 | remote: adding changesets |
|
1716 | 1716 | remote: adding manifests |
|
1717 | 1717 | remote: adding file changes |
|
1718 | 1718 | remote: added 1 changesets with 1 changes to 1 files |
|
1719 | 1719 | $ [ -f "${USERCACHE}"/02a439e5c31c526465ab1a0ca1f431f76b827b90 ] |
|
1720 | 1720 | $ [ -f empty/.hg/largefiles/02a439e5c31c526465ab1a0ca1f431f76b827b90 ] |
|
1721 | 1721 | |
|
1722 | 1722 | Clone over http, no largefiles pulled on clone. |
|
1723 | 1723 | |
|
1724 | 1724 | $ hg clone http://localhost:$HGPORT2/#default http-clone -U |
|
1725 | 1725 | adding changesets |
|
1726 | 1726 | adding manifests |
|
1727 | 1727 | adding file changes |
|
1728 | 1728 | added 1 changesets with 1 changes to 1 files |
|
1729 | 1729 | |
|
1730 | 1730 | test 'verify' with remotestore: |
|
1731 | 1731 | |
|
1732 | 1732 | $ rm "${USERCACHE}"/02a439e5c31c526465ab1a0ca1f431f76b827b90 |
|
1733 | 1733 | $ mv empty/.hg/largefiles/02a439e5c31c526465ab1a0ca1f431f76b827b90 . |
|
1734 | 1734 | $ hg -R http-clone verify --large --lfa |
|
1735 | 1735 | checking changesets |
|
1736 | 1736 | checking manifests |
|
1737 | 1737 | crosschecking files in changesets and manifests |
|
1738 | 1738 | checking files |
|
1739 | 1739 | 1 files, 1 changesets, 1 total revisions |
|
1740 | 1740 | searching 1 changesets for largefiles |
|
1741 | 1741 | changeset 0:cf03e5bb9936: f1 missing |
|
1742 | 1742 | verified existence of 1 revisions of 1 largefiles |
|
1743 | 1743 | [1] |
|
1744 | 1744 | $ mv 02a439e5c31c526465ab1a0ca1f431f76b827b90 empty/.hg/largefiles/ |
|
1745 | 1745 | $ hg -R http-clone -q verify --large --lfa |
|
1746 | 1746 | |
|
1747 | 1747 | largefiles pulled on update - a largefile missing on the server: |
|
1748 | 1748 | $ mv empty/.hg/largefiles/02a439e5c31c526465ab1a0ca1f431f76b827b90 . |
|
1749 | 1749 | $ hg -R http-clone up --config largefiles.usercache=http-clone-usercache |
|
1750 | 1750 | getting changed largefiles |
|
1751 | 1751 | f1: largefile 02a439e5c31c526465ab1a0ca1f431f76b827b90 not available from http://localhost:$HGPORT2/ |
|
1752 | 1752 | 0 largefiles updated, 0 removed |
|
1753 | 1753 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1754 | 1754 | $ hg -R http-clone st |
|
1755 | 1755 | ! f1 |
|
1756 | 1756 | $ hg -R http-clone up -Cqr null |
|
1757 | 1757 | |
|
1758 | 1758 | largefiles pulled on update - a largefile corrupted on the server: |
|
1759 | 1759 | $ echo corruption > empty/.hg/largefiles/02a439e5c31c526465ab1a0ca1f431f76b827b90 |
|
1760 | 1760 | $ hg -R http-clone up --config largefiles.usercache=http-clone-usercache |
|
1761 | 1761 | getting changed largefiles |
|
1762 | 1762 | f1: data corruption (expected 02a439e5c31c526465ab1a0ca1f431f76b827b90, got 6a7bb2556144babe3899b25e5428123735bb1e27) |
|
1763 | 1763 | 0 largefiles updated, 0 removed |
|
1764 | 1764 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1765 | 1765 | $ hg -R http-clone st |
|
1766 | 1766 | ! f1 |
|
1767 | 1767 | $ [ ! -f http-clone/.hg/largefiles/02a439e5c31c526465ab1a0ca1f431f76b827b90 ] |
|
1768 | 1768 | $ [ ! -f http-clone/f1 ] |
|
1769 | 1769 | $ [ ! -f http-clone-usercache ] |
|
1770 | 1770 | $ hg -R http-clone verify --large --lfc |
|
1771 | 1771 | checking changesets |
|
1772 | 1772 | checking manifests |
|
1773 | 1773 | crosschecking files in changesets and manifests |
|
1774 | 1774 | checking files |
|
1775 | 1775 | 1 files, 1 changesets, 1 total revisions |
|
1776 | 1776 | searching 1 changesets for largefiles |
|
1777 | 1777 | verified contents of 1 revisions of 1 largefiles |
|
1778 | 1778 | $ hg -R http-clone up -Cqr null |
|
1779 | 1779 | |
|
1780 | 1780 | largefiles pulled on update - no server side problems: |
|
1781 | 1781 | $ mv 02a439e5c31c526465ab1a0ca1f431f76b827b90 empty/.hg/largefiles/ |
|
1782 | 1782 | $ hg -R http-clone --debug up --config largefiles.usercache=http-clone-usercache |
|
1783 | 1783 | resolving manifests |
|
1784 | 1784 | branchmerge: False, force: False, partial: False |
|
1785 | 1785 | ancestor: 000000000000, local: 000000000000+, remote: cf03e5bb9936 |
|
1786 | 1786 | .hglf/f1: remote created -> g |
|
1787 | 1787 | getting .hglf/f1 |
|
1788 | 1788 | updating: .hglf/f1 1/1 files (100.00%) |
|
1789 | 1789 | getting changed largefiles |
|
1790 | 1790 | using http://localhost:$HGPORT2/ |
|
1791 | 1791 | sending capabilities command |
|
1792 | 1792 | sending batch command |
|
1793 | 1793 | getting largefiles: 0/1 lfile (0.00%) |
|
1794 | 1794 | getting f1:02a439e5c31c526465ab1a0ca1f431f76b827b90 |
|
1795 | 1795 | sending getlfile command |
|
1796 | 1796 | found 02a439e5c31c526465ab1a0ca1f431f76b827b90 in store |
|
1797 | 1797 | 1 largefiles updated, 0 removed |
|
1798 | 1798 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1799 | 1799 | |
|
1800 | 1800 | $ ls http-clone-usercache/* |
|
1801 | 1801 | http-clone-usercache/02a439e5c31c526465ab1a0ca1f431f76b827b90 |
|
1802 | 1802 | |
|
1803 | 1803 | $ rm -rf empty http-clone* |
|
1804 | 1804 | |
|
1805 | 1805 | used all HGPORTs, kill all daemons |
|
1806 | 1806 | $ "$TESTDIR/killdaemons.py" $DAEMON_PIDS |
|
1807 | 1807 | |
|
1808 | 1808 | #endif |
|
1809 | 1809 | |
|
1810 | 1810 | |
|
1811 | 1811 | #if unix-permissions |
|
1812 | 1812 | |
|
1813 | 1813 | Clone a local repository owned by another user |
|
1814 | 1814 | We have to simulate that here by setting $HOME and removing write permissions |
|
1815 | 1815 | $ ORIGHOME="$HOME" |
|
1816 | 1816 | $ mkdir alice |
|
1817 | 1817 | $ HOME="`pwd`/alice" |
|
1818 | 1818 | $ cd alice |
|
1819 | 1819 | $ hg init pubrepo |
|
1820 | 1820 | $ cd pubrepo |
|
1821 | 1821 | $ dd if=/dev/zero bs=1k count=11k > a-large-file 2> /dev/null |
|
1822 | 1822 | $ hg add --large a-large-file |
|
1823 | 1823 | $ hg commit -m "Add a large file" |
|
1824 | 1824 | Invoking status precommit hook |
|
1825 | 1825 | A a-large-file |
|
1826 | 1826 | $ cd .. |
|
1827 | 1827 | $ chmod -R a-w pubrepo |
|
1828 | 1828 | $ cd .. |
|
1829 | 1829 | $ mkdir bob |
|
1830 | 1830 | $ HOME="`pwd`/bob" |
|
1831 | 1831 | $ cd bob |
|
1832 | 1832 | $ hg clone --pull ../alice/pubrepo pubrepo |
|
1833 | 1833 | requesting all changes |
|
1834 | 1834 | adding changesets |
|
1835 | 1835 | adding manifests |
|
1836 | 1836 | adding file changes |
|
1837 | 1837 | added 1 changesets with 1 changes to 1 files |
|
1838 | 1838 | updating to branch default |
|
1839 | 1839 | getting changed largefiles |
|
1840 | 1840 | 1 largefiles updated, 0 removed |
|
1841 | 1841 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1842 | 1842 | $ cd .. |
|
1843 | 1843 | $ chmod -R u+w alice/pubrepo |
|
1844 | 1844 | $ HOME="$ORIGHOME" |
|
1845 | 1845 | |
|
1846 | 1846 | #endif |
|
1847 | 1847 | |
|
1848 | 1848 | #if symlink |
|
1849 | 1849 | |
|
1850 | 1850 | Symlink to a large largefile should behave the same as a symlink to a normal file |
|
1851 | 1851 | $ hg init largesymlink |
|
1852 | 1852 | $ cd largesymlink |
|
1853 | 1853 | $ dd if=/dev/zero bs=1k count=10k of=largefile 2>/dev/null |
|
1854 | 1854 | $ hg add --large largefile |
|
1855 | 1855 | $ hg commit -m "commit a large file" |
|
1856 | 1856 | Invoking status precommit hook |
|
1857 | 1857 | A largefile |
|
1858 | 1858 | $ ln -s largefile largelink |
|
1859 | 1859 | $ hg add largelink |
|
1860 | 1860 | $ hg commit -m "commit a large symlink" |
|
1861 | 1861 | Invoking status precommit hook |
|
1862 | 1862 | A largelink |
|
1863 | 1863 | $ rm -f largelink |
|
1864 | 1864 | $ hg up >/dev/null |
|
1865 | 1865 | $ test -f largelink |
|
1866 | 1866 | [1] |
|
1867 | 1867 | $ test -L largelink |
|
1868 | 1868 | [1] |
|
1869 | 1869 | $ rm -f largelink # make next part of the test independent of the previous |
|
1870 | 1870 | $ hg up -C >/dev/null |
|
1871 | 1871 | $ test -f largelink |
|
1872 | 1872 | $ test -L largelink |
|
1873 | 1873 | $ cd .. |
|
1874 | 1874 | |
|
1875 | 1875 | #endif |
|
1876 | 1876 | |
|
1877 | 1877 | test for pattern matching on 'hg status': |
|
1878 | 1878 | to boost performance, largefiles checks whether specified patterns are |
|
1879 | 1879 | related to largefiles in working directory (NOT to STANDIN) or not. |
|
1880 | 1880 | |
|
1881 | 1881 | $ hg init statusmatch |
|
1882 | 1882 | $ cd statusmatch |
|
1883 | 1883 | |
|
1884 | 1884 | $ mkdir -p a/b/c/d |
|
1885 | 1885 | $ echo normal > a/b/c/d/e.normal.txt |
|
1886 | 1886 | $ hg add a/b/c/d/e.normal.txt |
|
1887 | 1887 | $ echo large > a/b/c/d/e.large.txt |
|
1888 | 1888 | $ hg add --large a/b/c/d/e.large.txt |
|
1889 | 1889 | $ mkdir -p a/b/c/x |
|
1890 | 1890 | $ echo normal > a/b/c/x/y.normal.txt |
|
1891 | 1891 | $ hg add a/b/c/x/y.normal.txt |
|
1892 | 1892 | $ hg commit -m 'add files' |
|
1893 | 1893 | Invoking status precommit hook |
|
1894 | 1894 | A a/b/c/d/e.large.txt |
|
1895 | 1895 | A a/b/c/d/e.normal.txt |
|
1896 | 1896 | A a/b/c/x/y.normal.txt |
|
1897 | 1897 | |
|
1898 | 1898 | (1) no pattern: no performance boost |
|
1899 | 1899 | $ hg status -A |
|
1900 | 1900 | C a/b/c/d/e.large.txt |
|
1901 | 1901 | C a/b/c/d/e.normal.txt |
|
1902 | 1902 | C a/b/c/x/y.normal.txt |
|
1903 | 1903 | |
|
1904 | 1904 | (2) pattern not related to largefiles: performance boost |
|
1905 | 1905 | $ hg status -A a/b/c/x |
|
1906 | 1906 | C a/b/c/x/y.normal.txt |
|
1907 | 1907 | |
|
1908 | 1908 | (3) pattern related to largefiles: no performance boost |
|
1909 | 1909 | $ hg status -A a/b/c/d |
|
1910 | 1910 | C a/b/c/d/e.large.txt |
|
1911 | 1911 | C a/b/c/d/e.normal.txt |
|
1912 | 1912 | |
|
1913 | 1913 | (4) pattern related to STANDIN (not to largefiles): performance boost |
|
1914 | 1914 | $ hg status -A .hglf/a |
|
1915 | 1915 | C .hglf/a/b/c/d/e.large.txt |
|
1916 | 1916 | |
|
1917 | 1917 | (5) mixed case: no performance boost |
|
1918 | 1918 | $ hg status -A a/b/c/x a/b/c/d |
|
1919 | 1919 | C a/b/c/d/e.large.txt |
|
1920 | 1920 | C a/b/c/d/e.normal.txt |
|
1921 | 1921 | C a/b/c/x/y.normal.txt |
|
1922 | 1922 | |
|
1923 | 1923 | verify that largefiles doesn't break filesets |
|
1924 | 1924 | |
|
1925 | 1925 | $ hg log --rev . --exclude "set:binary()" |
|
1926 | 1926 | changeset: 0:41bd42f10efa |
|
1927 | 1927 | tag: tip |
|
1928 | 1928 | user: test |
|
1929 | 1929 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
1930 | 1930 | summary: add files |
|
1931 | 1931 | |
|
1932 | 1932 | verify that large files in subrepos handled properly |
|
1933 | 1933 | $ hg init subrepo |
|
1934 | 1934 | $ echo "subrepo = subrepo" > .hgsub |
|
1935 | 1935 | $ hg add .hgsub |
|
1936 | 1936 | $ hg ci -m "add subrepo" |
|
1937 | 1937 | Invoking status precommit hook |
|
1938 | 1938 | A .hgsub |
|
1939 | 1939 | ? .hgsubstate |
|
1940 | 1940 | $ echo "rev 1" > subrepo/large.txt |
|
1941 | 1941 | $ hg -R subrepo add --large subrepo/large.txt |
|
1942 | 1942 | $ hg sum |
|
1943 | 1943 | parent: 1:8ee150ea2e9c tip |
|
1944 | 1944 | add subrepo |
|
1945 | 1945 | branch: default |
|
1946 | 1946 | commit: 1 subrepos |
|
1947 | 1947 | update: (current) |
|
1948 | 1948 | $ hg st |
|
1949 | 1949 | $ hg st -S |
|
1950 | 1950 | A subrepo/large.txt |
|
1951 | 1951 | $ hg ci -S -m "commit top repo" |
|
1952 | 1952 | committing subrepository subrepo |
|
1953 | 1953 | Invoking status precommit hook |
|
1954 | 1954 | A large.txt |
|
1955 | 1955 | Invoking status precommit hook |
|
1956 | 1956 | M .hgsubstate |
|
1957 | 1957 | # No differences |
|
1958 | 1958 | $ hg st -S |
|
1959 | 1959 | $ hg sum |
|
1960 | 1960 | parent: 2:ce4cd0c527a6 tip |
|
1961 | 1961 | commit top repo |
|
1962 | 1962 | branch: default |
|
1963 | 1963 | commit: (clean) |
|
1964 | 1964 | update: (current) |
|
1965 | 1965 | $ echo "rev 2" > subrepo/large.txt |
|
1966 | 1966 | $ hg st -S |
|
1967 | 1967 | M subrepo/large.txt |
|
1968 | 1968 | $ hg sum |
|
1969 | 1969 | parent: 2:ce4cd0c527a6 tip |
|
1970 | 1970 | commit top repo |
|
1971 | 1971 | branch: default |
|
1972 | 1972 | commit: 1 subrepos |
|
1973 | 1973 | update: (current) |
|
1974 | 1974 | $ hg ci -m "this commit should fail without -S" |
|
1975 | 1975 | abort: uncommitted changes in subrepo subrepo |
|
1976 | 1976 | (use --subrepos for recursive commit) |
|
1977 | 1977 | [255] |
|
1978 | 1978 | |
|
1979 | 1979 | Add a normal file to the subrepo, then test archiving |
|
1980 | 1980 | |
|
1981 | 1981 | $ echo 'normal file' > subrepo/normal.txt |
|
1982 | 1982 | $ hg -R subrepo add subrepo/normal.txt |
|
1983 | 1983 | |
|
1984 | 1984 | Lock in subrepo, otherwise the change isn't archived |
|
1985 | 1985 | |
|
1986 | 1986 | $ hg ci -S -m "add normal file to top level" |
|
1987 | 1987 | committing subrepository subrepo |
|
1988 | 1988 | Invoking status precommit hook |
|
1989 | 1989 | M large.txt |
|
1990 | 1990 | A normal.txt |
|
1991 | 1991 | Invoking status precommit hook |
|
1992 | 1992 | M .hgsubstate |
|
1993 | 1993 | $ hg archive -S ../lf_subrepo_archive |
|
1994 | 1994 | $ find ../lf_subrepo_archive | sort |
|
1995 | 1995 | ../lf_subrepo_archive |
|
1996 | 1996 | ../lf_subrepo_archive/.hg_archival.txt |
|
1997 | 1997 | ../lf_subrepo_archive/.hgsub |
|
1998 | 1998 | ../lf_subrepo_archive/.hgsubstate |
|
1999 | 1999 | ../lf_subrepo_archive/a |
|
2000 | 2000 | ../lf_subrepo_archive/a/b |
|
2001 | 2001 | ../lf_subrepo_archive/a/b/c |
|
2002 | 2002 | ../lf_subrepo_archive/a/b/c/d |
|
2003 | 2003 | ../lf_subrepo_archive/a/b/c/d/e.large.txt |
|
2004 | 2004 | ../lf_subrepo_archive/a/b/c/d/e.normal.txt |
|
2005 | 2005 | ../lf_subrepo_archive/a/b/c/x |
|
2006 | 2006 | ../lf_subrepo_archive/a/b/c/x/y.normal.txt |
|
2007 | 2007 | ../lf_subrepo_archive/subrepo |
|
2008 | 2008 | ../lf_subrepo_archive/subrepo/large.txt |
|
2009 | 2009 | ../lf_subrepo_archive/subrepo/normal.txt |
|
2010 | 2010 | |
|
2011 | 2011 | Test update with subrepos. |
|
2012 | 2012 | |
|
2013 | 2013 | $ hg update 0 |
|
2014 | 2014 | getting changed largefiles |
|
2015 | 2015 | 0 largefiles updated, 1 removed |
|
2016 | 2016 | 0 files updated, 0 files merged, 2 files removed, 0 files unresolved |
|
2017 | 2017 | $ hg status -S |
|
2018 | 2018 | $ hg update tip |
|
2019 | 2019 | getting changed largefiles |
|
2020 | 2020 | 1 largefiles updated, 0 removed |
|
2021 | 2021 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
2022 | 2022 | $ hg status -S |
|
2023 | 2023 | # modify a large file |
|
2024 | 2024 | $ echo "modified" > subrepo/large.txt |
|
2025 | 2025 | $ hg st -S |
|
2026 | 2026 | M subrepo/large.txt |
|
2027 | 2027 | # update -C should revert the change. |
|
2028 | 2028 | $ hg update -C |
|
2029 | 2029 | getting changed largefiles |
|
2030 | 2030 | 1 largefiles updated, 0 removed |
|
2031 | 2031 | getting changed largefiles |
|
2032 | 2032 | 0 largefiles updated, 0 removed |
|
2033 | 2033 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
2034 | 2034 | $ hg status -S |
|
2035 | 2035 | |
|
2036 | 2036 | Test archiving a revision that references a subrepo that is not yet |
|
2037 | 2037 | cloned (see test-subrepo-recursion.t): |
|
2038 | 2038 | |
|
2039 | 2039 | $ hg clone -U . ../empty |
|
2040 | 2040 | $ cd ../empty |
|
2041 | 2041 | $ hg archive --subrepos -r tip ../archive.tar.gz |
|
2042 | 2042 | cloning subrepo subrepo from $TESTTMP/statusmatch/subrepo |
|
2043 | 2043 | $ cd .. |
|
2044 | 2044 | |
|
2045 | 2045 | Test that addremove picks up largefiles prior to the initial commit (issue3541) |
|
2046 | 2046 | |
|
2047 | 2047 | $ hg init addrm2 |
|
2048 | 2048 | $ cd addrm2 |
|
2049 | 2049 | $ touch large.dat |
|
2050 | 2050 | $ touch large2.dat |
|
2051 | 2051 | $ touch normal |
|
2052 | 2052 | $ hg add --large large.dat |
|
2053 | 2053 | $ hg addremove -v |
|
2054 | 2054 | adding large2.dat as a largefile |
|
2055 | 2055 | adding normal |
|
2056 | 2056 | |
|
2057 | 2057 | Test that forgetting all largefiles reverts to islfilesrepo() == False |
|
2058 | 2058 | (addremove will add *.dat as normal files now) |
|
2059 | 2059 | $ hg forget large.dat |
|
2060 | 2060 | $ hg forget large2.dat |
|
2061 | 2061 | $ hg addremove -v |
|
2062 | 2062 | adding large.dat |
|
2063 | 2063 | adding large2.dat |
|
2064 | 2064 | |
|
2065 | 2065 | Test commit's addremove option prior to the first commit |
|
2066 | 2066 | $ hg forget large.dat |
|
2067 | 2067 | $ hg forget large2.dat |
|
2068 | 2068 | $ hg add --large large.dat |
|
2069 | 2069 | $ hg ci -Am "commit" |
|
2070 | 2070 | adding large2.dat as a largefile |
|
2071 | 2071 | Invoking status precommit hook |
|
2072 | 2072 | A large.dat |
|
2073 | 2073 | A large2.dat |
|
2074 | 2074 | A normal |
|
2075 | 2075 | $ find .hglf | sort |
|
2076 | 2076 | .hglf |
|
2077 | 2077 | .hglf/large.dat |
|
2078 | 2078 | .hglf/large2.dat |
|
2079 | 2079 | |
|
2080 | 2080 | Test actions on largefiles using relative paths from subdir |
|
2081 | 2081 | |
|
2082 | 2082 | $ mkdir sub |
|
2083 | 2083 | $ cd sub |
|
2084 | 2084 | $ echo anotherlarge > anotherlarge |
|
2085 | 2085 | $ hg add --large anotherlarge |
|
2086 | 2086 | $ hg st |
|
2087 | 2087 | A sub/anotherlarge |
|
2088 | 2088 | $ hg st anotherlarge |
|
2089 | 2089 | A anotherlarge |
|
2090 | 2090 | $ hg commit -m anotherlarge anotherlarge |
|
2091 | 2091 | Invoking status precommit hook |
|
2092 | 2092 | A sub/anotherlarge |
|
2093 | 2093 | $ hg log anotherlarge |
|
2094 | 2094 | changeset: 1:9627a577c5e9 |
|
2095 | 2095 | tag: tip |
|
2096 | 2096 | user: test |
|
2097 | 2097 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
2098 | 2098 | summary: anotherlarge |
|
2099 | 2099 | |
|
2100 | 2100 | $ echo more >> anotherlarge |
|
2101 | 2101 | $ hg st . |
|
2102 | 2102 | M anotherlarge |
|
2103 | 2103 | $ hg cat anotherlarge |
|
2104 | 2104 | anotherlarge |
|
2105 | 2105 | $ hg revert anotherlarge |
|
2106 | 2106 | $ hg st |
|
2107 | 2107 | ? sub/anotherlarge.orig |
|
2108 | 2108 | $ cd .. |
|
2109 | 2109 | |
|
2110 | 2110 | $ cd .. |
|
2111 | 2111 | |
|
2112 | 2112 | issue3651: summary/outgoing with largefiles shows "no remote repo" |
|
2113 | 2113 | unexpectedly |
|
2114 | 2114 | |
|
2115 | 2115 | $ mkdir issue3651 |
|
2116 | 2116 | $ cd issue3651 |
|
2117 | 2117 | |
|
2118 | 2118 | $ hg init src |
|
2119 | 2119 | $ echo a > src/a |
|
2120 | 2120 | $ hg -R src add --large src/a |
|
2121 | 2121 | $ hg -R src commit -m '#0' |
|
2122 | 2122 | Invoking status precommit hook |
|
2123 | 2123 | A a |
|
2124 | 2124 | |
|
2125 | 2125 | check messages when no remote repository is specified: |
|
2126 | 2126 | "no remote repo" route for "hg outgoing --large" is not tested here, |
|
2127 | 2127 | because it can't be reproduced easily. |
|
2128 | 2128 | |
|
2129 | 2129 | $ hg init clone1 |
|
2130 | 2130 | $ hg -R clone1 -q pull src |
|
2131 | 2131 | $ hg -R clone1 -q update |
|
2132 | 2132 | $ hg -R clone1 paths | grep default |
|
2133 | 2133 | [1] |
|
2134 | 2134 | |
|
2135 | 2135 | $ hg -R clone1 summary --large |
|
2136 | 2136 | parent: 0:fc0bd45326d3 tip |
|
2137 | 2137 | #0 |
|
2138 | 2138 | branch: default |
|
2139 | 2139 | commit: (clean) |
|
2140 | 2140 | update: (current) |
|
2141 | 2141 | largefiles: (no remote repo) |
|
2142 | 2142 | |
|
2143 | 2143 | check messages when there is no files to upload: |
|
2144 | 2144 | |
|
2145 | 2145 | $ hg -q clone src clone2 |
|
2146 | 2146 | $ hg -R clone2 paths | grep default |
|
2147 | 2147 | default = $TESTTMP/issue3651/src (glob) |
|
2148 | 2148 | |
|
2149 | 2149 | $ hg -R clone2 summary --large |
|
2150 | 2150 | parent: 0:fc0bd45326d3 tip |
|
2151 | 2151 | #0 |
|
2152 | 2152 | branch: default |
|
2153 | 2153 | commit: (clean) |
|
2154 | 2154 | update: (current) |
|
2155 | 2155 | searching for changes |
|
2156 | 2156 | largefiles: (no files to upload) |
|
2157 | 2157 | $ hg -R clone2 outgoing --large |
|
2158 | 2158 | comparing with $TESTTMP/issue3651/src (glob) |
|
2159 | 2159 | searching for changes |
|
2160 | 2160 | no changes found |
|
2161 | 2161 | searching for changes |
|
2162 | 2162 | largefiles: no files to upload |
|
2163 | 2163 | [1] |
|
2164 | 2164 | |
|
2165 | 2165 | check messages when there are files to upload: |
|
2166 | 2166 | |
|
2167 | 2167 | $ echo b > clone2/b |
|
2168 | 2168 | $ hg -R clone2 add --large clone2/b |
|
2169 | 2169 | $ hg -R clone2 commit -m '#1' |
|
2170 | 2170 | Invoking status precommit hook |
|
2171 | 2171 | A b |
|
2172 | 2172 | $ hg -R clone2 summary --large |
|
2173 | 2173 | parent: 1:1acbe71ce432 tip |
|
2174 | 2174 | #1 |
|
2175 | 2175 | branch: default |
|
2176 | 2176 | commit: (clean) |
|
2177 | 2177 | update: (current) |
|
2178 | 2178 | searching for changes |
|
2179 | 2179 | largefiles: 1 to upload |
|
2180 | 2180 | $ hg -R clone2 outgoing --large |
|
2181 | 2181 | comparing with $TESTTMP/issue3651/src (glob) |
|
2182 | 2182 | searching for changes |
|
2183 | 2183 | changeset: 1:1acbe71ce432 |
|
2184 | 2184 | tag: tip |
|
2185 | 2185 | user: test |
|
2186 | 2186 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
2187 | 2187 | summary: #1 |
|
2188 | 2188 | |
|
2189 | 2189 | searching for changes |
|
2190 | 2190 | largefiles to upload: |
|
2191 | 2191 | b |
|
2192 | 2192 | |
|
2193 | 2193 | |
|
2194 | 2194 | $ cd .. |
|
2195 | 2195 | |
|
2196 | 2196 | merge action 'd' for 'local renamed directory to d2/g' which has no filename |
|
2197 | 2197 | |
|
2198 | 2198 | $ hg init merge-action |
|
2199 | 2199 | $ cd merge-action |
|
2200 | 2200 | $ touch l |
|
2201 | 2201 | $ hg add --large l |
|
2202 | 2202 | $ mkdir d1 |
|
2203 | 2203 | $ touch d1/f |
|
2204 | 2204 | $ hg ci -Aqm0 |
|
2205 | 2205 | Invoking status precommit hook |
|
2206 | 2206 | A d1/f |
|
2207 | 2207 | A l |
|
2208 | 2208 | $ echo > d1/f |
|
2209 | 2209 | $ touch d1/g |
|
2210 | 2210 | $ hg ci -Aqm1 |
|
2211 | 2211 | Invoking status precommit hook |
|
2212 | 2212 | M d1/f |
|
2213 | 2213 | A d1/g |
|
2214 | 2214 | $ hg up -qr0 |
|
2215 | 2215 | $ hg mv d1 d2 |
|
2216 | 2216 | moving d1/f to d2/f (glob) |
|
2217 | 2217 | $ hg ci -qm2 |
|
2218 | 2218 | Invoking status precommit hook |
|
2219 | 2219 | A d2/f |
|
2220 | 2220 | R d1/f |
|
2221 | 2221 | $ hg merge |
|
2222 | 2222 | merging d2/f and d1/f to d2/f |
|
2223 | 2223 | 1 files updated, 1 files merged, 0 files removed, 0 files unresolved |
|
2224 | 2224 | (branch merge, don't forget to commit) |
|
2225 | 2225 | getting changed largefiles |
|
2226 | 2226 | 0 largefiles updated, 0 removed |
|
2227 | 2227 | $ cd .. |
|
2228 | 2228 | |
|
2229 | 2229 | Check whether "largefiles" feature is supported only in repositories |
|
2230 | 2230 | enabling largefiles extension. |
|
2231 | 2231 | |
|
2232 | 2232 | $ mkdir individualenabling |
|
2233 | 2233 | $ cd individualenabling |
|
2234 | 2234 | |
|
2235 | 2235 | $ hg init enabledlocally |
|
2236 | 2236 | $ echo large > enabledlocally/large |
|
2237 | 2237 | $ hg -R enabledlocally add --large enabledlocally/large |
|
2238 | 2238 | $ hg -R enabledlocally commit -m '#0' |
|
2239 | 2239 | Invoking status precommit hook |
|
2240 | 2240 | A large |
|
2241 | 2241 | |
|
2242 | 2242 | $ hg init notenabledlocally |
|
2243 | 2243 | $ echo large > notenabledlocally/large |
|
2244 | 2244 | $ hg -R notenabledlocally add --large notenabledlocally/large |
|
2245 | 2245 | $ hg -R notenabledlocally commit -m '#0' |
|
2246 | 2246 | Invoking status precommit hook |
|
2247 | 2247 | A large |
|
2248 | 2248 | |
|
2249 | 2249 | $ cat >> $HGRCPATH <<EOF |
|
2250 | 2250 | > [extensions] |
|
2251 | 2251 | > # disable globally |
|
2252 | 2252 | > largefiles=! |
|
2253 | 2253 | > EOF |
|
2254 | 2254 | $ cat >> enabledlocally/.hg/hgrc <<EOF |
|
2255 | 2255 | > [extensions] |
|
2256 | 2256 | > # enable locally |
|
2257 | 2257 | > largefiles= |
|
2258 | 2258 | > EOF |
|
2259 | 2259 | $ hg -R enabledlocally root |
|
2260 | 2260 | $TESTTMP/individualenabling/enabledlocally (glob) |
|
2261 | 2261 | $ hg -R notenabledlocally root |
|
2262 |
abort: |
|
|
2263 |
(see http://mercurial.selenic.com/wiki/MissingRequirement for |
|
|
2262 | abort: repository requires features unknown to this Mercurial: largefiles! | |
|
2263 | (see http://mercurial.selenic.com/wiki/MissingRequirement for more information) | |
|
2264 | 2264 | [255] |
|
2265 | 2265 | |
|
2266 | 2266 | $ hg init push-dst |
|
2267 | 2267 | $ hg -R enabledlocally push push-dst |
|
2268 | 2268 | pushing to push-dst |
|
2269 | 2269 | abort: required features are not supported in the destination: largefiles |
|
2270 | 2270 | [255] |
|
2271 | 2271 | |
|
2272 | 2272 | $ hg init pull-src |
|
2273 | 2273 | $ hg -R pull-src pull enabledlocally |
|
2274 | 2274 | pulling from enabledlocally |
|
2275 | 2275 | abort: required features are not supported in the destination: largefiles |
|
2276 | 2276 | [255] |
|
2277 | 2277 | |
|
2278 | 2278 | $ hg clone enabledlocally clone-dst |
|
2279 |
abort: |
|
|
2280 |
(see http://mercurial.selenic.com/wiki/MissingRequirement for |
|
|
2279 | abort: repository requires features unknown to this Mercurial: largefiles! | |
|
2280 | (see http://mercurial.selenic.com/wiki/MissingRequirement for more information) | |
|
2281 | 2281 | [255] |
|
2282 | 2282 | $ test -d clone-dst |
|
2283 | 2283 | [1] |
|
2284 | 2284 | $ hg clone --pull enabledlocally clone-pull-dst |
|
2285 | 2285 | abort: required features are not supported in the destination: largefiles |
|
2286 | 2286 | [255] |
|
2287 | 2287 | $ test -d clone-pull-dst |
|
2288 | 2288 | [1] |
|
2289 | 2289 | |
|
2290 | 2290 | $ cd .. |
@@ -1,72 +1,72 | |||
|
1 | 1 | $ hg init t |
|
2 | 2 | $ cd t |
|
3 | 3 | $ echo a > a |
|
4 | 4 | $ hg add a |
|
5 | 5 | $ hg commit -m test |
|
6 | 6 | $ rm .hg/requires |
|
7 | 7 | $ hg tip |
|
8 | 8 | abort: index 00changelog.i unknown format 2! |
|
9 | 9 | [255] |
|
10 | 10 | $ echo indoor-pool > .hg/requires |
|
11 | 11 | $ hg tip |
|
12 |
abort: |
|
|
13 |
(see http://mercurial.selenic.com/wiki/MissingRequirement for |
|
|
12 | abort: repository requires features unknown to this Mercurial: indoor-pool! | |
|
13 | (see http://mercurial.selenic.com/wiki/MissingRequirement for more information) | |
|
14 | 14 | [255] |
|
15 | 15 | $ echo outdoor-pool >> .hg/requires |
|
16 | 16 | $ hg tip |
|
17 |
abort: |
|
|
18 |
(see http://mercurial.selenic.com/wiki/MissingRequirement for |
|
|
17 | abort: repository requires features unknown to this Mercurial: indoor-pool outdoor-pool! | |
|
18 | (see http://mercurial.selenic.com/wiki/MissingRequirement for more information) | |
|
19 | 19 | [255] |
|
20 | 20 | $ cd .. |
|
21 | 21 | |
|
22 | 22 | Test checking between features supported locally and ones required in |
|
23 | 23 | another repository of push/pull/clone on localhost: |
|
24 | 24 | |
|
25 | 25 | $ mkdir supported-locally |
|
26 | 26 | $ cd supported-locally |
|
27 | 27 | |
|
28 | 28 | $ hg init supported |
|
29 | 29 | $ echo a > supported/a |
|
30 | 30 | $ hg -R supported commit -Am '#0 at supported' |
|
31 | 31 | adding a |
|
32 | 32 | |
|
33 | 33 | $ echo 'featuresetup-test' >> supported/.hg/requires |
|
34 | 34 | $ cat > $TESTTMP/supported-locally/supportlocally.py <<EOF |
|
35 | 35 | > from mercurial import localrepo, extensions |
|
36 | 36 | > def featuresetup(ui, supported): |
|
37 | 37 | > for name, module in extensions.extensions(ui): |
|
38 | 38 | > if __name__ == module.__name__: |
|
39 | 39 | > # support specific feature locally |
|
40 | 40 | > supported |= set(['featuresetup-test']) |
|
41 | 41 | > return |
|
42 | 42 | > def uisetup(ui): |
|
43 | 43 | > localrepo.localrepository.featuresetupfuncs.add(featuresetup) |
|
44 | 44 | > EOF |
|
45 | 45 | $ cat > supported/.hg/hgrc <<EOF |
|
46 | 46 | > [extensions] |
|
47 | 47 | > # enable extension locally |
|
48 | 48 | > supportlocally = $TESTTMP/supported-locally/supportlocally.py |
|
49 | 49 | > EOF |
|
50 | 50 | $ hg -R supported status |
|
51 | 51 | |
|
52 | 52 | $ hg init push-dst |
|
53 | 53 | $ hg -R supported push push-dst |
|
54 | 54 | pushing to push-dst |
|
55 | 55 | abort: required features are not supported in the destination: featuresetup-test |
|
56 | 56 | [255] |
|
57 | 57 | |
|
58 | 58 | $ hg init pull-src |
|
59 | 59 | $ hg -R pull-src pull supported |
|
60 | 60 | pulling from supported |
|
61 | 61 | abort: required features are not supported in the destination: featuresetup-test |
|
62 | 62 | [255] |
|
63 | 63 | |
|
64 | 64 | $ hg clone supported clone-dst |
|
65 |
abort: |
|
|
66 |
(see http://mercurial.selenic.com/wiki/MissingRequirement for |
|
|
65 | abort: repository requires features unknown to this Mercurial: featuresetup-test! | |
|
66 | (see http://mercurial.selenic.com/wiki/MissingRequirement for more information) | |
|
67 | 67 | [255] |
|
68 | 68 | $ hg clone --pull supported clone-dst |
|
69 | 69 | abort: required features are not supported in the destination: featuresetup-test |
|
70 | 70 | [255] |
|
71 | 71 | |
|
72 | 72 | $ cd .. |
General Comments 0
You need to be logged in to leave comments.
Login now