##// END OF EJS Templates
subrepo: set GIT_ALLOW_PROTOCOL to limit git clone protocols (SEC)...
Mateusz Kwapich -
r28658:34d43cb8 stable
parent child Browse files
Show More
@@ -1,1938 +1,1943 b''
1 1 # subrepo.py - sub-repository handling for Mercurial
2 2 #
3 3 # Copyright 2009-2010 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 __future__ import absolute_import
9 9
10 10 import copy
11 11 import errno
12 12 import os
13 13 import posixpath
14 14 import re
15 15 import stat
16 16 import subprocess
17 17 import sys
18 18 import tarfile
19 19 import xml.dom.minidom
20 20
21 21
22 22 from .i18n import _
23 23 from . import (
24 24 cmdutil,
25 25 config,
26 26 error,
27 27 exchange,
28 28 match as matchmod,
29 29 node,
30 30 pathutil,
31 31 phases,
32 32 scmutil,
33 33 util,
34 34 )
35 35
36 36 hg = None
37 37 propertycache = util.propertycache
38 38
39 39 nullstate = ('', '', 'empty')
40 40
41 41 def _expandedabspath(path):
42 42 '''
43 43 get a path or url and if it is a path expand it and return an absolute path
44 44 '''
45 45 expandedpath = util.urllocalpath(util.expandpath(path))
46 46 u = util.url(expandedpath)
47 47 if not u.scheme:
48 48 path = util.normpath(os.path.abspath(u.path))
49 49 return path
50 50
51 51 def _getstorehashcachename(remotepath):
52 52 '''get a unique filename for the store hash cache of a remote repository'''
53 53 return util.sha1(_expandedabspath(remotepath)).hexdigest()[0:12]
54 54
55 55 class SubrepoAbort(error.Abort):
56 56 """Exception class used to avoid handling a subrepo error more than once"""
57 57 def __init__(self, *args, **kw):
58 58 error.Abort.__init__(self, *args, **kw)
59 59 self.subrepo = kw.get('subrepo')
60 60 self.cause = kw.get('cause')
61 61
62 62 def annotatesubrepoerror(func):
63 63 def decoratedmethod(self, *args, **kargs):
64 64 try:
65 65 res = func(self, *args, **kargs)
66 66 except SubrepoAbort as ex:
67 67 # This exception has already been handled
68 68 raise ex
69 69 except error.Abort as ex:
70 70 subrepo = subrelpath(self)
71 71 errormsg = str(ex) + ' ' + _('(in subrepo %s)') % subrepo
72 72 # avoid handling this exception by raising a SubrepoAbort exception
73 73 raise SubrepoAbort(errormsg, hint=ex.hint, subrepo=subrepo,
74 74 cause=sys.exc_info())
75 75 return res
76 76 return decoratedmethod
77 77
78 78 def state(ctx, ui):
79 79 """return a state dict, mapping subrepo paths configured in .hgsub
80 80 to tuple: (source from .hgsub, revision from .hgsubstate, kind
81 81 (key in types dict))
82 82 """
83 83 p = config.config()
84 84 repo = ctx.repo()
85 85 def read(f, sections=None, remap=None):
86 86 if f in ctx:
87 87 try:
88 88 data = ctx[f].data()
89 89 except IOError as err:
90 90 if err.errno != errno.ENOENT:
91 91 raise
92 92 # handle missing subrepo spec files as removed
93 93 ui.warn(_("warning: subrepo spec file \'%s\' not found\n") %
94 94 repo.pathto(f))
95 95 return
96 96 p.parse(f, data, sections, remap, read)
97 97 else:
98 98 raise error.Abort(_("subrepo spec file \'%s\' not found") %
99 99 repo.pathto(f))
100 100 if '.hgsub' in ctx:
101 101 read('.hgsub')
102 102
103 103 for path, src in ui.configitems('subpaths'):
104 104 p.set('subpaths', path, src, ui.configsource('subpaths', path))
105 105
106 106 rev = {}
107 107 if '.hgsubstate' in ctx:
108 108 try:
109 109 for i, l in enumerate(ctx['.hgsubstate'].data().splitlines()):
110 110 l = l.lstrip()
111 111 if not l:
112 112 continue
113 113 try:
114 114 revision, path = l.split(" ", 1)
115 115 except ValueError:
116 116 raise error.Abort(_("invalid subrepository revision "
117 117 "specifier in \'%s\' line %d")
118 118 % (repo.pathto('.hgsubstate'), (i + 1)))
119 119 rev[path] = revision
120 120 except IOError as err:
121 121 if err.errno != errno.ENOENT:
122 122 raise
123 123
124 124 def remap(src):
125 125 for pattern, repl in p.items('subpaths'):
126 126 # Turn r'C:\foo\bar' into r'C:\\foo\\bar' since re.sub
127 127 # does a string decode.
128 128 repl = repl.encode('string-escape')
129 129 # However, we still want to allow back references to go
130 130 # through unharmed, so we turn r'\\1' into r'\1'. Again,
131 131 # extra escapes are needed because re.sub string decodes.
132 132 repl = re.sub(r'\\\\([0-9]+)', r'\\\1', repl)
133 133 try:
134 134 src = re.sub(pattern, repl, src, 1)
135 135 except re.error as e:
136 136 raise error.Abort(_("bad subrepository pattern in %s: %s")
137 137 % (p.source('subpaths', pattern), e))
138 138 return src
139 139
140 140 state = {}
141 141 for path, src in p[''].items():
142 142 kind = 'hg'
143 143 if src.startswith('['):
144 144 if ']' not in src:
145 145 raise error.Abort(_('missing ] in subrepo source'))
146 146 kind, src = src.split(']', 1)
147 147 kind = kind[1:]
148 148 src = src.lstrip() # strip any extra whitespace after ']'
149 149
150 150 if not util.url(src).isabs():
151 151 parent = _abssource(repo, abort=False)
152 152 if parent:
153 153 parent = util.url(parent)
154 154 parent.path = posixpath.join(parent.path or '', src)
155 155 parent.path = posixpath.normpath(parent.path)
156 156 joined = str(parent)
157 157 # Remap the full joined path and use it if it changes,
158 158 # else remap the original source.
159 159 remapped = remap(joined)
160 160 if remapped == joined:
161 161 src = remap(src)
162 162 else:
163 163 src = remapped
164 164
165 165 src = remap(src)
166 166 state[util.pconvert(path)] = (src.strip(), rev.get(path, ''), kind)
167 167
168 168 return state
169 169
170 170 def writestate(repo, state):
171 171 """rewrite .hgsubstate in (outer) repo with these subrepo states"""
172 172 lines = ['%s %s\n' % (state[s][1], s) for s in sorted(state)
173 173 if state[s][1] != nullstate[1]]
174 174 repo.wwrite('.hgsubstate', ''.join(lines), '')
175 175
176 176 def submerge(repo, wctx, mctx, actx, overwrite):
177 177 """delegated from merge.applyupdates: merging of .hgsubstate file
178 178 in working context, merging context and ancestor context"""
179 179 if mctx == actx: # backwards?
180 180 actx = wctx.p1()
181 181 s1 = wctx.substate
182 182 s2 = mctx.substate
183 183 sa = actx.substate
184 184 sm = {}
185 185
186 186 repo.ui.debug("subrepo merge %s %s %s\n" % (wctx, mctx, actx))
187 187
188 188 def debug(s, msg, r=""):
189 189 if r:
190 190 r = "%s:%s:%s" % r
191 191 repo.ui.debug(" subrepo %s: %s %s\n" % (s, msg, r))
192 192
193 193 for s, l in sorted(s1.iteritems()):
194 194 a = sa.get(s, nullstate)
195 195 ld = l # local state with possible dirty flag for compares
196 196 if wctx.sub(s).dirty():
197 197 ld = (l[0], l[1] + "+")
198 198 if wctx == actx: # overwrite
199 199 a = ld
200 200
201 201 if s in s2:
202 202 r = s2[s]
203 203 if ld == r or r == a: # no change or local is newer
204 204 sm[s] = l
205 205 continue
206 206 elif ld == a: # other side changed
207 207 debug(s, "other changed, get", r)
208 208 wctx.sub(s).get(r, overwrite)
209 209 sm[s] = r
210 210 elif ld[0] != r[0]: # sources differ
211 211 if repo.ui.promptchoice(
212 212 _(' subrepository sources for %s differ\n'
213 213 'use (l)ocal source (%s) or (r)emote source (%s)?'
214 214 '$$ &Local $$ &Remote') % (s, l[0], r[0]), 0):
215 215 debug(s, "prompt changed, get", r)
216 216 wctx.sub(s).get(r, overwrite)
217 217 sm[s] = r
218 218 elif ld[1] == a[1]: # local side is unchanged
219 219 debug(s, "other side changed, get", r)
220 220 wctx.sub(s).get(r, overwrite)
221 221 sm[s] = r
222 222 else:
223 223 debug(s, "both sides changed")
224 224 srepo = wctx.sub(s)
225 225 option = repo.ui.promptchoice(
226 226 _(' subrepository %s diverged (local revision: %s, '
227 227 'remote revision: %s)\n'
228 228 '(M)erge, keep (l)ocal or keep (r)emote?'
229 229 '$$ &Merge $$ &Local $$ &Remote')
230 230 % (s, srepo.shortid(l[1]), srepo.shortid(r[1])), 0)
231 231 if option == 0:
232 232 wctx.sub(s).merge(r)
233 233 sm[s] = l
234 234 debug(s, "merge with", r)
235 235 elif option == 1:
236 236 sm[s] = l
237 237 debug(s, "keep local subrepo revision", l)
238 238 else:
239 239 wctx.sub(s).get(r, overwrite)
240 240 sm[s] = r
241 241 debug(s, "get remote subrepo revision", r)
242 242 elif ld == a: # remote removed, local unchanged
243 243 debug(s, "remote removed, remove")
244 244 wctx.sub(s).remove()
245 245 elif a == nullstate: # not present in remote or ancestor
246 246 debug(s, "local added, keep")
247 247 sm[s] = l
248 248 continue
249 249 else:
250 250 if repo.ui.promptchoice(
251 251 _(' local changed subrepository %s which remote removed\n'
252 252 'use (c)hanged version or (d)elete?'
253 253 '$$ &Changed $$ &Delete') % s, 0):
254 254 debug(s, "prompt remove")
255 255 wctx.sub(s).remove()
256 256
257 257 for s, r in sorted(s2.items()):
258 258 if s in s1:
259 259 continue
260 260 elif s not in sa:
261 261 debug(s, "remote added, get", r)
262 262 mctx.sub(s).get(r)
263 263 sm[s] = r
264 264 elif r != sa[s]:
265 265 if repo.ui.promptchoice(
266 266 _(' remote changed subrepository %s which local removed\n'
267 267 'use (c)hanged version or (d)elete?'
268 268 '$$ &Changed $$ &Delete') % s, 0) == 0:
269 269 debug(s, "prompt recreate", r)
270 270 mctx.sub(s).get(r)
271 271 sm[s] = r
272 272
273 273 # record merged .hgsubstate
274 274 writestate(repo, sm)
275 275 return sm
276 276
277 277 def _updateprompt(ui, sub, dirty, local, remote):
278 278 if dirty:
279 279 msg = (_(' subrepository sources for %s differ\n'
280 280 'use (l)ocal source (%s) or (r)emote source (%s)?'
281 281 '$$ &Local $$ &Remote')
282 282 % (subrelpath(sub), local, remote))
283 283 else:
284 284 msg = (_(' subrepository sources for %s differ (in checked out '
285 285 'version)\n'
286 286 'use (l)ocal source (%s) or (r)emote source (%s)?'
287 287 '$$ &Local $$ &Remote')
288 288 % (subrelpath(sub), local, remote))
289 289 return ui.promptchoice(msg, 0)
290 290
291 291 def reporelpath(repo):
292 292 """return path to this (sub)repo as seen from outermost repo"""
293 293 parent = repo
294 294 while util.safehasattr(parent, '_subparent'):
295 295 parent = parent._subparent
296 296 return repo.root[len(pathutil.normasprefix(parent.root)):]
297 297
298 298 def subrelpath(sub):
299 299 """return path to this subrepo as seen from outermost repo"""
300 300 return sub._relpath
301 301
302 302 def _abssource(repo, push=False, abort=True):
303 303 """return pull/push path of repo - either based on parent repo .hgsub info
304 304 or on the top repo config. Abort or return None if no source found."""
305 305 if util.safehasattr(repo, '_subparent'):
306 306 source = util.url(repo._subsource)
307 307 if source.isabs():
308 308 return str(source)
309 309 source.path = posixpath.normpath(source.path)
310 310 parent = _abssource(repo._subparent, push, abort=False)
311 311 if parent:
312 312 parent = util.url(util.pconvert(parent))
313 313 parent.path = posixpath.join(parent.path or '', source.path)
314 314 parent.path = posixpath.normpath(parent.path)
315 315 return str(parent)
316 316 else: # recursion reached top repo
317 317 if util.safehasattr(repo, '_subtoppath'):
318 318 return repo._subtoppath
319 319 if push and repo.ui.config('paths', 'default-push'):
320 320 return repo.ui.config('paths', 'default-push')
321 321 if repo.ui.config('paths', 'default'):
322 322 return repo.ui.config('paths', 'default')
323 323 if repo.shared():
324 324 # chop off the .hg component to get the default path form
325 325 return os.path.dirname(repo.sharedpath)
326 326 if abort:
327 327 raise error.Abort(_("default path for subrepository not found"))
328 328
329 329 def _sanitize(ui, vfs, ignore):
330 330 for dirname, dirs, names in vfs.walk():
331 331 for i, d in enumerate(dirs):
332 332 if d.lower() == ignore:
333 333 del dirs[i]
334 334 break
335 335 if vfs.basename(dirname).lower() != '.hg':
336 336 continue
337 337 for f in names:
338 338 if f.lower() == 'hgrc':
339 339 ui.warn(_("warning: removing potentially hostile 'hgrc' "
340 340 "in '%s'\n") % vfs.join(dirname))
341 341 vfs.unlink(vfs.reljoin(dirname, f))
342 342
343 343 def subrepo(ctx, path, allowwdir=False):
344 344 """return instance of the right subrepo class for subrepo in path"""
345 345 # subrepo inherently violates our import layering rules
346 346 # because it wants to make repo objects from deep inside the stack
347 347 # so we manually delay the circular imports to not break
348 348 # scripts that don't use our demand-loading
349 349 global hg
350 350 from . import hg as h
351 351 hg = h
352 352
353 353 pathutil.pathauditor(ctx.repo().root)(path)
354 354 state = ctx.substate[path]
355 355 if state[2] not in types:
356 356 raise error.Abort(_('unknown subrepo type %s') % state[2])
357 357 if allowwdir:
358 358 state = (state[0], ctx.subrev(path), state[2])
359 359 return types[state[2]](ctx, path, state[:2])
360 360
361 361 def nullsubrepo(ctx, path, pctx):
362 362 """return an empty subrepo in pctx for the extant subrepo in ctx"""
363 363 # subrepo inherently violates our import layering rules
364 364 # because it wants to make repo objects from deep inside the stack
365 365 # so we manually delay the circular imports to not break
366 366 # scripts that don't use our demand-loading
367 367 global hg
368 368 from . import hg as h
369 369 hg = h
370 370
371 371 pathutil.pathauditor(ctx.repo().root)(path)
372 372 state = ctx.substate[path]
373 373 if state[2] not in types:
374 374 raise error.Abort(_('unknown subrepo type %s') % state[2])
375 375 subrev = ''
376 376 if state[2] == 'hg':
377 377 subrev = "0" * 40
378 378 return types[state[2]](pctx, path, (state[0], subrev))
379 379
380 380 def newcommitphase(ui, ctx):
381 381 commitphase = phases.newcommitphase(ui)
382 382 substate = getattr(ctx, "substate", None)
383 383 if not substate:
384 384 return commitphase
385 385 check = ui.config('phases', 'checksubrepos', 'follow')
386 386 if check not in ('ignore', 'follow', 'abort'):
387 387 raise error.Abort(_('invalid phases.checksubrepos configuration: %s')
388 388 % (check))
389 389 if check == 'ignore':
390 390 return commitphase
391 391 maxphase = phases.public
392 392 maxsub = None
393 393 for s in sorted(substate):
394 394 sub = ctx.sub(s)
395 395 subphase = sub.phase(substate[s][1])
396 396 if maxphase < subphase:
397 397 maxphase = subphase
398 398 maxsub = s
399 399 if commitphase < maxphase:
400 400 if check == 'abort':
401 401 raise error.Abort(_("can't commit in %s phase"
402 402 " conflicting %s from subrepository %s") %
403 403 (phases.phasenames[commitphase],
404 404 phases.phasenames[maxphase], maxsub))
405 405 ui.warn(_("warning: changes are committed in"
406 406 " %s phase from subrepository %s\n") %
407 407 (phases.phasenames[maxphase], maxsub))
408 408 return maxphase
409 409 return commitphase
410 410
411 411 # subrepo classes need to implement the following abstract class:
412 412
413 413 class abstractsubrepo(object):
414 414
415 415 def __init__(self, ctx, path):
416 416 """Initialize abstractsubrepo part
417 417
418 418 ``ctx`` is the context referring this subrepository in the
419 419 parent repository.
420 420
421 421 ``path`` is the path to this subrepository as seen from
422 422 innermost repository.
423 423 """
424 424 self.ui = ctx.repo().ui
425 425 self._ctx = ctx
426 426 self._path = path
427 427
428 428 def storeclean(self, path):
429 429 """
430 430 returns true if the repository has not changed since it was last
431 431 cloned from or pushed to a given repository.
432 432 """
433 433 return False
434 434
435 435 def dirty(self, ignoreupdate=False):
436 436 """returns true if the dirstate of the subrepo is dirty or does not
437 437 match current stored state. If ignoreupdate is true, only check
438 438 whether the subrepo has uncommitted changes in its dirstate.
439 439 """
440 440 raise NotImplementedError
441 441
442 442 def dirtyreason(self, ignoreupdate=False):
443 443 """return reason string if it is ``dirty()``
444 444
445 445 Returned string should have enough information for the message
446 446 of exception.
447 447
448 448 This returns None, otherwise.
449 449 """
450 450 if self.dirty(ignoreupdate=ignoreupdate):
451 451 return _("uncommitted changes in subrepository '%s'"
452 452 ) % subrelpath(self)
453 453
454 454 def bailifchanged(self, ignoreupdate=False):
455 455 """raise Abort if subrepository is ``dirty()``
456 456 """
457 457 dirtyreason = self.dirtyreason(ignoreupdate=ignoreupdate)
458 458 if dirtyreason:
459 459 raise error.Abort(dirtyreason)
460 460
461 461 def basestate(self):
462 462 """current working directory base state, disregarding .hgsubstate
463 463 state and working directory modifications"""
464 464 raise NotImplementedError
465 465
466 466 def checknested(self, path):
467 467 """check if path is a subrepository within this repository"""
468 468 return False
469 469
470 470 def commit(self, text, user, date):
471 471 """commit the current changes to the subrepo with the given
472 472 log message. Use given user and date if possible. Return the
473 473 new state of the subrepo.
474 474 """
475 475 raise NotImplementedError
476 476
477 477 def phase(self, state):
478 478 """returns phase of specified state in the subrepository.
479 479 """
480 480 return phases.public
481 481
482 482 def remove(self):
483 483 """remove the subrepo
484 484
485 485 (should verify the dirstate is not dirty first)
486 486 """
487 487 raise NotImplementedError
488 488
489 489 def get(self, state, overwrite=False):
490 490 """run whatever commands are needed to put the subrepo into
491 491 this state
492 492 """
493 493 raise NotImplementedError
494 494
495 495 def merge(self, state):
496 496 """merge currently-saved state with the new state."""
497 497 raise NotImplementedError
498 498
499 499 def push(self, opts):
500 500 """perform whatever action is analogous to 'hg push'
501 501
502 502 This may be a no-op on some systems.
503 503 """
504 504 raise NotImplementedError
505 505
506 506 def add(self, ui, match, prefix, explicitonly, **opts):
507 507 return []
508 508
509 509 def addremove(self, matcher, prefix, opts, dry_run, similarity):
510 510 self.ui.warn("%s: %s" % (prefix, _("addremove is not supported")))
511 511 return 1
512 512
513 513 def cat(self, match, prefix, **opts):
514 514 return 1
515 515
516 516 def status(self, rev2, **opts):
517 517 return scmutil.status([], [], [], [], [], [], [])
518 518
519 519 def diff(self, ui, diffopts, node2, match, prefix, **opts):
520 520 pass
521 521
522 522 def outgoing(self, ui, dest, opts):
523 523 return 1
524 524
525 525 def incoming(self, ui, source, opts):
526 526 return 1
527 527
528 528 def files(self):
529 529 """return filename iterator"""
530 530 raise NotImplementedError
531 531
532 532 def filedata(self, name):
533 533 """return file data"""
534 534 raise NotImplementedError
535 535
536 536 def fileflags(self, name):
537 537 """return file flags"""
538 538 return ''
539 539
540 540 def getfileset(self, expr):
541 541 """Resolve the fileset expression for this repo"""
542 542 return set()
543 543
544 544 def printfiles(self, ui, m, fm, fmt, subrepos):
545 545 """handle the files command for this subrepo"""
546 546 return 1
547 547
548 548 def archive(self, archiver, prefix, match=None):
549 549 if match is not None:
550 550 files = [f for f in self.files() if match(f)]
551 551 else:
552 552 files = self.files()
553 553 total = len(files)
554 554 relpath = subrelpath(self)
555 555 self.ui.progress(_('archiving (%s)') % relpath, 0,
556 556 unit=_('files'), total=total)
557 557 for i, name in enumerate(files):
558 558 flags = self.fileflags(name)
559 559 mode = 'x' in flags and 0o755 or 0o644
560 560 symlink = 'l' in flags
561 561 archiver.addfile(prefix + self._path + '/' + name,
562 562 mode, symlink, self.filedata(name))
563 563 self.ui.progress(_('archiving (%s)') % relpath, i + 1,
564 564 unit=_('files'), total=total)
565 565 self.ui.progress(_('archiving (%s)') % relpath, None)
566 566 return total
567 567
568 568 def walk(self, match):
569 569 '''
570 570 walk recursively through the directory tree, finding all files
571 571 matched by the match function
572 572 '''
573 573 pass
574 574
575 575 def forget(self, match, prefix):
576 576 return ([], [])
577 577
578 578 def removefiles(self, matcher, prefix, after, force, subrepos):
579 579 """remove the matched files from the subrepository and the filesystem,
580 580 possibly by force and/or after the file has been removed from the
581 581 filesystem. Return 0 on success, 1 on any warning.
582 582 """
583 583 return 1
584 584
585 585 def revert(self, substate, *pats, **opts):
586 586 self.ui.warn('%s: reverting %s subrepos is unsupported\n' \
587 587 % (substate[0], substate[2]))
588 588 return []
589 589
590 590 def shortid(self, revid):
591 591 return revid
592 592
593 593 def verify(self):
594 594 '''verify the integrity of the repository. Return 0 on success or
595 595 warning, 1 on any error.
596 596 '''
597 597 return 0
598 598
599 599 @propertycache
600 600 def wvfs(self):
601 601 """return vfs to access the working directory of this subrepository
602 602 """
603 603 return scmutil.vfs(self._ctx.repo().wvfs.join(self._path))
604 604
605 605 @propertycache
606 606 def _relpath(self):
607 607 """return path to this subrepository as seen from outermost repository
608 608 """
609 609 return self.wvfs.reljoin(reporelpath(self._ctx.repo()), self._path)
610 610
611 611 class hgsubrepo(abstractsubrepo):
612 612 def __init__(self, ctx, path, state):
613 613 super(hgsubrepo, self).__init__(ctx, path)
614 614 self._state = state
615 615 r = ctx.repo()
616 616 root = r.wjoin(path)
617 617 create = not r.wvfs.exists('%s/.hg' % path)
618 618 self._repo = hg.repository(r.baseui, root, create=create)
619 619
620 620 # Propagate the parent's --hidden option
621 621 if r is r.unfiltered():
622 622 self._repo = self._repo.unfiltered()
623 623
624 624 self.ui = self._repo.ui
625 625 for s, k in [('ui', 'commitsubrepos')]:
626 626 v = r.ui.config(s, k)
627 627 if v:
628 628 self.ui.setconfig(s, k, v, 'subrepo')
629 629 # internal config: ui._usedassubrepo
630 630 self.ui.setconfig('ui', '_usedassubrepo', 'True', 'subrepo')
631 631 self._initrepo(r, state[0], create)
632 632
633 633 def storeclean(self, path):
634 634 with self._repo.lock():
635 635 return self._storeclean(path)
636 636
637 637 def _storeclean(self, path):
638 638 clean = True
639 639 itercache = self._calcstorehash(path)
640 640 for filehash in self._readstorehashcache(path):
641 641 if filehash != next(itercache, None):
642 642 clean = False
643 643 break
644 644 if clean:
645 645 # if not empty:
646 646 # the cached and current pull states have a different size
647 647 clean = next(itercache, None) is None
648 648 return clean
649 649
650 650 def _calcstorehash(self, remotepath):
651 651 '''calculate a unique "store hash"
652 652
653 653 This method is used to to detect when there are changes that may
654 654 require a push to a given remote path.'''
655 655 # sort the files that will be hashed in increasing (likely) file size
656 656 filelist = ('bookmarks', 'store/phaseroots', 'store/00changelog.i')
657 657 yield '# %s\n' % _expandedabspath(remotepath)
658 658 vfs = self._repo.vfs
659 659 for relname in filelist:
660 660 filehash = util.sha1(vfs.tryread(relname)).hexdigest()
661 661 yield '%s = %s\n' % (relname, filehash)
662 662
663 663 @propertycache
664 664 def _cachestorehashvfs(self):
665 665 return scmutil.vfs(self._repo.join('cache/storehash'))
666 666
667 667 def _readstorehashcache(self, remotepath):
668 668 '''read the store hash cache for a given remote repository'''
669 669 cachefile = _getstorehashcachename(remotepath)
670 670 return self._cachestorehashvfs.tryreadlines(cachefile, 'r')
671 671
672 672 def _cachestorehash(self, remotepath):
673 673 '''cache the current store hash
674 674
675 675 Each remote repo requires its own store hash cache, because a subrepo
676 676 store may be "clean" versus a given remote repo, but not versus another
677 677 '''
678 678 cachefile = _getstorehashcachename(remotepath)
679 679 with self._repo.lock():
680 680 storehash = list(self._calcstorehash(remotepath))
681 681 vfs = self._cachestorehashvfs
682 682 vfs.writelines(cachefile, storehash, mode='w', notindexed=True)
683 683
684 684 def _getctx(self):
685 685 '''fetch the context for this subrepo revision, possibly a workingctx
686 686 '''
687 687 if self._ctx.rev() is None:
688 688 return self._repo[None] # workingctx if parent is workingctx
689 689 else:
690 690 rev = self._state[1]
691 691 return self._repo[rev]
692 692
693 693 @annotatesubrepoerror
694 694 def _initrepo(self, parentrepo, source, create):
695 695 self._repo._subparent = parentrepo
696 696 self._repo._subsource = source
697 697
698 698 if create:
699 699 lines = ['[paths]\n']
700 700
701 701 def addpathconfig(key, value):
702 702 if value:
703 703 lines.append('%s = %s\n' % (key, value))
704 704 self.ui.setconfig('paths', key, value, 'subrepo')
705 705
706 706 defpath = _abssource(self._repo, abort=False)
707 707 defpushpath = _abssource(self._repo, True, abort=False)
708 708 addpathconfig('default', defpath)
709 709 if defpath != defpushpath:
710 710 addpathconfig('default-push', defpushpath)
711 711
712 712 fp = self._repo.vfs("hgrc", "w", text=True)
713 713 try:
714 714 fp.write(''.join(lines))
715 715 finally:
716 716 fp.close()
717 717
718 718 @annotatesubrepoerror
719 719 def add(self, ui, match, prefix, explicitonly, **opts):
720 720 return cmdutil.add(ui, self._repo, match,
721 721 self.wvfs.reljoin(prefix, self._path),
722 722 explicitonly, **opts)
723 723
724 724 @annotatesubrepoerror
725 725 def addremove(self, m, prefix, opts, dry_run, similarity):
726 726 # In the same way as sub directories are processed, once in a subrepo,
727 727 # always entry any of its subrepos. Don't corrupt the options that will
728 728 # be used to process sibling subrepos however.
729 729 opts = copy.copy(opts)
730 730 opts['subrepos'] = True
731 731 return scmutil.addremove(self._repo, m,
732 732 self.wvfs.reljoin(prefix, self._path), opts,
733 733 dry_run, similarity)
734 734
735 735 @annotatesubrepoerror
736 736 def cat(self, match, prefix, **opts):
737 737 rev = self._state[1]
738 738 ctx = self._repo[rev]
739 739 return cmdutil.cat(self.ui, self._repo, ctx, match, prefix, **opts)
740 740
741 741 @annotatesubrepoerror
742 742 def status(self, rev2, **opts):
743 743 try:
744 744 rev1 = self._state[1]
745 745 ctx1 = self._repo[rev1]
746 746 ctx2 = self._repo[rev2]
747 747 return self._repo.status(ctx1, ctx2, **opts)
748 748 except error.RepoLookupError as inst:
749 749 self.ui.warn(_('warning: error "%s" in subrepository "%s"\n')
750 750 % (inst, subrelpath(self)))
751 751 return scmutil.status([], [], [], [], [], [], [])
752 752
753 753 @annotatesubrepoerror
754 754 def diff(self, ui, diffopts, node2, match, prefix, **opts):
755 755 try:
756 756 node1 = node.bin(self._state[1])
757 757 # We currently expect node2 to come from substate and be
758 758 # in hex format
759 759 if node2 is not None:
760 760 node2 = node.bin(node2)
761 761 cmdutil.diffordiffstat(ui, self._repo, diffopts,
762 762 node1, node2, match,
763 763 prefix=posixpath.join(prefix, self._path),
764 764 listsubrepos=True, **opts)
765 765 except error.RepoLookupError as inst:
766 766 self.ui.warn(_('warning: error "%s" in subrepository "%s"\n')
767 767 % (inst, subrelpath(self)))
768 768
769 769 @annotatesubrepoerror
770 770 def archive(self, archiver, prefix, match=None):
771 771 self._get(self._state + ('hg',))
772 772 total = abstractsubrepo.archive(self, archiver, prefix, match)
773 773 rev = self._state[1]
774 774 ctx = self._repo[rev]
775 775 for subpath in ctx.substate:
776 776 s = subrepo(ctx, subpath, True)
777 777 submatch = matchmod.narrowmatcher(subpath, match)
778 778 total += s.archive(archiver, prefix + self._path + '/', submatch)
779 779 return total
780 780
781 781 @annotatesubrepoerror
782 782 def dirty(self, ignoreupdate=False):
783 783 r = self._state[1]
784 784 if r == '' and not ignoreupdate: # no state recorded
785 785 return True
786 786 w = self._repo[None]
787 787 if r != w.p1().hex() and not ignoreupdate:
788 788 # different version checked out
789 789 return True
790 790 return w.dirty() # working directory changed
791 791
792 792 def basestate(self):
793 793 return self._repo['.'].hex()
794 794
795 795 def checknested(self, path):
796 796 return self._repo._checknested(self._repo.wjoin(path))
797 797
798 798 @annotatesubrepoerror
799 799 def commit(self, text, user, date):
800 800 # don't bother committing in the subrepo if it's only been
801 801 # updated
802 802 if not self.dirty(True):
803 803 return self._repo['.'].hex()
804 804 self.ui.debug("committing subrepo %s\n" % subrelpath(self))
805 805 n = self._repo.commit(text, user, date)
806 806 if not n:
807 807 return self._repo['.'].hex() # different version checked out
808 808 return node.hex(n)
809 809
810 810 @annotatesubrepoerror
811 811 def phase(self, state):
812 812 return self._repo[state].phase()
813 813
814 814 @annotatesubrepoerror
815 815 def remove(self):
816 816 # we can't fully delete the repository as it may contain
817 817 # local-only history
818 818 self.ui.note(_('removing subrepo %s\n') % subrelpath(self))
819 819 hg.clean(self._repo, node.nullid, False)
820 820
821 821 def _get(self, state):
822 822 source, revision, kind = state
823 823 if revision in self._repo.unfiltered():
824 824 return True
825 825 self._repo._subsource = source
826 826 srcurl = _abssource(self._repo)
827 827 other = hg.peer(self._repo, {}, srcurl)
828 828 if len(self._repo) == 0:
829 829 self.ui.status(_('cloning subrepo %s from %s\n')
830 830 % (subrelpath(self), srcurl))
831 831 parentrepo = self._repo._subparent
832 832 # use self._repo.vfs instead of self.wvfs to remove .hg only
833 833 self._repo.vfs.rmtree()
834 834 other, cloned = hg.clone(self._repo._subparent.baseui, {},
835 835 other, self._repo.root,
836 836 update=False)
837 837 self._repo = cloned.local()
838 838 self._initrepo(parentrepo, source, create=True)
839 839 self._cachestorehash(srcurl)
840 840 else:
841 841 self.ui.status(_('pulling subrepo %s from %s\n')
842 842 % (subrelpath(self), srcurl))
843 843 cleansub = self.storeclean(srcurl)
844 844 exchange.pull(self._repo, other)
845 845 if cleansub:
846 846 # keep the repo clean after pull
847 847 self._cachestorehash(srcurl)
848 848 return False
849 849
850 850 @annotatesubrepoerror
851 851 def get(self, state, overwrite=False):
852 852 inrepo = self._get(state)
853 853 source, revision, kind = state
854 854 repo = self._repo
855 855 repo.ui.debug("getting subrepo %s\n" % self._path)
856 856 if inrepo:
857 857 urepo = repo.unfiltered()
858 858 ctx = urepo[revision]
859 859 if ctx.hidden():
860 860 urepo.ui.warn(
861 861 _('revision %s in subrepo %s is hidden\n') \
862 862 % (revision[0:12], self._path))
863 863 repo = urepo
864 864 hg.updaterepo(repo, revision, overwrite)
865 865
866 866 @annotatesubrepoerror
867 867 def merge(self, state):
868 868 self._get(state)
869 869 cur = self._repo['.']
870 870 dst = self._repo[state[1]]
871 871 anc = dst.ancestor(cur)
872 872
873 873 def mergefunc():
874 874 if anc == cur and dst.branch() == cur.branch():
875 875 self.ui.debug("updating subrepo %s\n" % subrelpath(self))
876 876 hg.update(self._repo, state[1])
877 877 elif anc == dst:
878 878 self.ui.debug("skipping subrepo %s\n" % subrelpath(self))
879 879 else:
880 880 self.ui.debug("merging subrepo %s\n" % subrelpath(self))
881 881 hg.merge(self._repo, state[1], remind=False)
882 882
883 883 wctx = self._repo[None]
884 884 if self.dirty():
885 885 if anc != dst:
886 886 if _updateprompt(self.ui, self, wctx.dirty(), cur, dst):
887 887 mergefunc()
888 888 else:
889 889 mergefunc()
890 890 else:
891 891 mergefunc()
892 892
893 893 @annotatesubrepoerror
894 894 def push(self, opts):
895 895 force = opts.get('force')
896 896 newbranch = opts.get('new_branch')
897 897 ssh = opts.get('ssh')
898 898
899 899 # push subrepos depth-first for coherent ordering
900 900 c = self._repo['']
901 901 subs = c.substate # only repos that are committed
902 902 for s in sorted(subs):
903 903 if c.sub(s).push(opts) == 0:
904 904 return False
905 905
906 906 dsturl = _abssource(self._repo, True)
907 907 if not force:
908 908 if self.storeclean(dsturl):
909 909 self.ui.status(
910 910 _('no changes made to subrepo %s since last push to %s\n')
911 911 % (subrelpath(self), dsturl))
912 912 return None
913 913 self.ui.status(_('pushing subrepo %s to %s\n') %
914 914 (subrelpath(self), dsturl))
915 915 other = hg.peer(self._repo, {'ssh': ssh}, dsturl)
916 916 res = exchange.push(self._repo, other, force, newbranch=newbranch)
917 917
918 918 # the repo is now clean
919 919 self._cachestorehash(dsturl)
920 920 return res.cgresult
921 921
922 922 @annotatesubrepoerror
923 923 def outgoing(self, ui, dest, opts):
924 924 if 'rev' in opts or 'branch' in opts:
925 925 opts = copy.copy(opts)
926 926 opts.pop('rev', None)
927 927 opts.pop('branch', None)
928 928 return hg.outgoing(ui, self._repo, _abssource(self._repo, True), opts)
929 929
930 930 @annotatesubrepoerror
931 931 def incoming(self, ui, source, opts):
932 932 if 'rev' in opts or 'branch' in opts:
933 933 opts = copy.copy(opts)
934 934 opts.pop('rev', None)
935 935 opts.pop('branch', None)
936 936 return hg.incoming(ui, self._repo, _abssource(self._repo, False), opts)
937 937
938 938 @annotatesubrepoerror
939 939 def files(self):
940 940 rev = self._state[1]
941 941 ctx = self._repo[rev]
942 942 return ctx.manifest().keys()
943 943
944 944 def filedata(self, name):
945 945 rev = self._state[1]
946 946 return self._repo[rev][name].data()
947 947
948 948 def fileflags(self, name):
949 949 rev = self._state[1]
950 950 ctx = self._repo[rev]
951 951 return ctx.flags(name)
952 952
953 953 @annotatesubrepoerror
954 954 def printfiles(self, ui, m, fm, fmt, subrepos):
955 955 # If the parent context is a workingctx, use the workingctx here for
956 956 # consistency.
957 957 if self._ctx.rev() is None:
958 958 ctx = self._repo[None]
959 959 else:
960 960 rev = self._state[1]
961 961 ctx = self._repo[rev]
962 962 return cmdutil.files(ui, ctx, m, fm, fmt, subrepos)
963 963
964 964 @annotatesubrepoerror
965 965 def getfileset(self, expr):
966 966 if self._ctx.rev() is None:
967 967 ctx = self._repo[None]
968 968 else:
969 969 rev = self._state[1]
970 970 ctx = self._repo[rev]
971 971
972 972 files = ctx.getfileset(expr)
973 973
974 974 for subpath in ctx.substate:
975 975 sub = ctx.sub(subpath)
976 976
977 977 try:
978 978 files.extend(subpath + '/' + f for f in sub.getfileset(expr))
979 979 except error.LookupError:
980 980 self.ui.status(_("skipping missing subrepository: %s\n")
981 981 % self.wvfs.reljoin(reporelpath(self), subpath))
982 982 return files
983 983
984 984 def walk(self, match):
985 985 ctx = self._repo[None]
986 986 return ctx.walk(match)
987 987
988 988 @annotatesubrepoerror
989 989 def forget(self, match, prefix):
990 990 return cmdutil.forget(self.ui, self._repo, match,
991 991 self.wvfs.reljoin(prefix, self._path), True)
992 992
993 993 @annotatesubrepoerror
994 994 def removefiles(self, matcher, prefix, after, force, subrepos):
995 995 return cmdutil.remove(self.ui, self._repo, matcher,
996 996 self.wvfs.reljoin(prefix, self._path),
997 997 after, force, subrepos)
998 998
999 999 @annotatesubrepoerror
1000 1000 def revert(self, substate, *pats, **opts):
1001 1001 # reverting a subrepo is a 2 step process:
1002 1002 # 1. if the no_backup is not set, revert all modified
1003 1003 # files inside the subrepo
1004 1004 # 2. update the subrepo to the revision specified in
1005 1005 # the corresponding substate dictionary
1006 1006 self.ui.status(_('reverting subrepo %s\n') % substate[0])
1007 1007 if not opts.get('no_backup'):
1008 1008 # Revert all files on the subrepo, creating backups
1009 1009 # Note that this will not recursively revert subrepos
1010 1010 # We could do it if there was a set:subrepos() predicate
1011 1011 opts = opts.copy()
1012 1012 opts['date'] = None
1013 1013 opts['rev'] = substate[1]
1014 1014
1015 1015 self.filerevert(*pats, **opts)
1016 1016
1017 1017 # Update the repo to the revision specified in the given substate
1018 1018 if not opts.get('dry_run'):
1019 1019 self.get(substate, overwrite=True)
1020 1020
1021 1021 def filerevert(self, *pats, **opts):
1022 1022 ctx = self._repo[opts['rev']]
1023 1023 parents = self._repo.dirstate.parents()
1024 1024 if opts.get('all'):
1025 1025 pats = ['set:modified()']
1026 1026 else:
1027 1027 pats = []
1028 1028 cmdutil.revert(self.ui, self._repo, ctx, parents, *pats, **opts)
1029 1029
1030 1030 def shortid(self, revid):
1031 1031 return revid[:12]
1032 1032
1033 1033 def verify(self):
1034 1034 try:
1035 1035 rev = self._state[1]
1036 1036 ctx = self._repo.unfiltered()[rev]
1037 1037 if ctx.hidden():
1038 1038 # Since hidden revisions aren't pushed/pulled, it seems worth an
1039 1039 # explicit warning.
1040 1040 ui = self._repo.ui
1041 1041 ui.warn(_("subrepo '%s' is hidden in revision %s\n") %
1042 1042 (self._relpath, node.short(self._ctx.node())))
1043 1043 return 0
1044 1044 except error.RepoLookupError:
1045 1045 # A missing subrepo revision may be a case of needing to pull it, so
1046 1046 # don't treat this as an error.
1047 1047 self._repo.ui.warn(_("subrepo '%s' not found in revision %s\n") %
1048 1048 (self._relpath, node.short(self._ctx.node())))
1049 1049 return 0
1050 1050
1051 1051 @propertycache
1052 1052 def wvfs(self):
1053 1053 """return own wvfs for efficiency and consistency
1054 1054 """
1055 1055 return self._repo.wvfs
1056 1056
1057 1057 @propertycache
1058 1058 def _relpath(self):
1059 1059 """return path to this subrepository as seen from outermost repository
1060 1060 """
1061 1061 # Keep consistent dir separators by avoiding vfs.join(self._path)
1062 1062 return reporelpath(self._repo)
1063 1063
1064 1064 class svnsubrepo(abstractsubrepo):
1065 1065 def __init__(self, ctx, path, state):
1066 1066 super(svnsubrepo, self).__init__(ctx, path)
1067 1067 self._state = state
1068 1068 self._exe = util.findexe('svn')
1069 1069 if not self._exe:
1070 1070 raise error.Abort(_("'svn' executable not found for subrepo '%s'")
1071 1071 % self._path)
1072 1072
1073 1073 def _svncommand(self, commands, filename='', failok=False):
1074 1074 cmd = [self._exe]
1075 1075 extrakw = {}
1076 1076 if not self.ui.interactive():
1077 1077 # Making stdin be a pipe should prevent svn from behaving
1078 1078 # interactively even if we can't pass --non-interactive.
1079 1079 extrakw['stdin'] = subprocess.PIPE
1080 1080 # Starting in svn 1.5 --non-interactive is a global flag
1081 1081 # instead of being per-command, but we need to support 1.4 so
1082 1082 # we have to be intelligent about what commands take
1083 1083 # --non-interactive.
1084 1084 if commands[0] in ('update', 'checkout', 'commit'):
1085 1085 cmd.append('--non-interactive')
1086 1086 cmd.extend(commands)
1087 1087 if filename is not None:
1088 1088 path = self.wvfs.reljoin(self._ctx.repo().origroot,
1089 1089 self._path, filename)
1090 1090 cmd.append(path)
1091 1091 env = dict(os.environ)
1092 1092 # Avoid localized output, preserve current locale for everything else.
1093 1093 lc_all = env.get('LC_ALL')
1094 1094 if lc_all:
1095 1095 env['LANG'] = lc_all
1096 1096 del env['LC_ALL']
1097 1097 env['LC_MESSAGES'] = 'C'
1098 1098 p = subprocess.Popen(cmd, bufsize=-1, close_fds=util.closefds,
1099 1099 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
1100 1100 universal_newlines=True, env=env, **extrakw)
1101 1101 stdout, stderr = p.communicate()
1102 1102 stderr = stderr.strip()
1103 1103 if not failok:
1104 1104 if p.returncode:
1105 1105 raise error.Abort(stderr or 'exited with code %d'
1106 1106 % p.returncode)
1107 1107 if stderr:
1108 1108 self.ui.warn(stderr + '\n')
1109 1109 return stdout, stderr
1110 1110
1111 1111 @propertycache
1112 1112 def _svnversion(self):
1113 1113 output, err = self._svncommand(['--version', '--quiet'], filename=None)
1114 1114 m = re.search(r'^(\d+)\.(\d+)', output)
1115 1115 if not m:
1116 1116 raise error.Abort(_('cannot retrieve svn tool version'))
1117 1117 return (int(m.group(1)), int(m.group(2)))
1118 1118
1119 1119 def _wcrevs(self):
1120 1120 # Get the working directory revision as well as the last
1121 1121 # commit revision so we can compare the subrepo state with
1122 1122 # both. We used to store the working directory one.
1123 1123 output, err = self._svncommand(['info', '--xml'])
1124 1124 doc = xml.dom.minidom.parseString(output)
1125 1125 entries = doc.getElementsByTagName('entry')
1126 1126 lastrev, rev = '0', '0'
1127 1127 if entries:
1128 1128 rev = str(entries[0].getAttribute('revision')) or '0'
1129 1129 commits = entries[0].getElementsByTagName('commit')
1130 1130 if commits:
1131 1131 lastrev = str(commits[0].getAttribute('revision')) or '0'
1132 1132 return (lastrev, rev)
1133 1133
1134 1134 def _wcrev(self):
1135 1135 return self._wcrevs()[0]
1136 1136
1137 1137 def _wcchanged(self):
1138 1138 """Return (changes, extchanges, missing) where changes is True
1139 1139 if the working directory was changed, extchanges is
1140 1140 True if any of these changes concern an external entry and missing
1141 1141 is True if any change is a missing entry.
1142 1142 """
1143 1143 output, err = self._svncommand(['status', '--xml'])
1144 1144 externals, changes, missing = [], [], []
1145 1145 doc = xml.dom.minidom.parseString(output)
1146 1146 for e in doc.getElementsByTagName('entry'):
1147 1147 s = e.getElementsByTagName('wc-status')
1148 1148 if not s:
1149 1149 continue
1150 1150 item = s[0].getAttribute('item')
1151 1151 props = s[0].getAttribute('props')
1152 1152 path = e.getAttribute('path')
1153 1153 if item == 'external':
1154 1154 externals.append(path)
1155 1155 elif item == 'missing':
1156 1156 missing.append(path)
1157 1157 if (item not in ('', 'normal', 'unversioned', 'external')
1158 1158 or props not in ('', 'none', 'normal')):
1159 1159 changes.append(path)
1160 1160 for path in changes:
1161 1161 for ext in externals:
1162 1162 if path == ext or path.startswith(ext + os.sep):
1163 1163 return True, True, bool(missing)
1164 1164 return bool(changes), False, bool(missing)
1165 1165
1166 1166 def dirty(self, ignoreupdate=False):
1167 1167 if not self._wcchanged()[0]:
1168 1168 if self._state[1] in self._wcrevs() or ignoreupdate:
1169 1169 return False
1170 1170 return True
1171 1171
1172 1172 def basestate(self):
1173 1173 lastrev, rev = self._wcrevs()
1174 1174 if lastrev != rev:
1175 1175 # Last committed rev is not the same than rev. We would
1176 1176 # like to take lastrev but we do not know if the subrepo
1177 1177 # URL exists at lastrev. Test it and fallback to rev it
1178 1178 # is not there.
1179 1179 try:
1180 1180 self._svncommand(['list', '%s@%s' % (self._state[0], lastrev)])
1181 1181 return lastrev
1182 1182 except error.Abort:
1183 1183 pass
1184 1184 return rev
1185 1185
1186 1186 @annotatesubrepoerror
1187 1187 def commit(self, text, user, date):
1188 1188 # user and date are out of our hands since svn is centralized
1189 1189 changed, extchanged, missing = self._wcchanged()
1190 1190 if not changed:
1191 1191 return self.basestate()
1192 1192 if extchanged:
1193 1193 # Do not try to commit externals
1194 1194 raise error.Abort(_('cannot commit svn externals'))
1195 1195 if missing:
1196 1196 # svn can commit with missing entries but aborting like hg
1197 1197 # seems a better approach.
1198 1198 raise error.Abort(_('cannot commit missing svn entries'))
1199 1199 commitinfo, err = self._svncommand(['commit', '-m', text])
1200 1200 self.ui.status(commitinfo)
1201 1201 newrev = re.search('Committed revision ([0-9]+).', commitinfo)
1202 1202 if not newrev:
1203 1203 if not commitinfo.strip():
1204 1204 # Sometimes, our definition of "changed" differs from
1205 1205 # svn one. For instance, svn ignores missing files
1206 1206 # when committing. If there are only missing files, no
1207 1207 # commit is made, no output and no error code.
1208 1208 raise error.Abort(_('failed to commit svn changes'))
1209 1209 raise error.Abort(commitinfo.splitlines()[-1])
1210 1210 newrev = newrev.groups()[0]
1211 1211 self.ui.status(self._svncommand(['update', '-r', newrev])[0])
1212 1212 return newrev
1213 1213
1214 1214 @annotatesubrepoerror
1215 1215 def remove(self):
1216 1216 if self.dirty():
1217 1217 self.ui.warn(_('not removing repo %s because '
1218 1218 'it has changes.\n') % self._path)
1219 1219 return
1220 1220 self.ui.note(_('removing subrepo %s\n') % self._path)
1221 1221
1222 1222 self.wvfs.rmtree(forcibly=True)
1223 1223 try:
1224 1224 pwvfs = self._ctx.repo().wvfs
1225 1225 pwvfs.removedirs(pwvfs.dirname(self._path))
1226 1226 except OSError:
1227 1227 pass
1228 1228
1229 1229 @annotatesubrepoerror
1230 1230 def get(self, state, overwrite=False):
1231 1231 if overwrite:
1232 1232 self._svncommand(['revert', '--recursive'])
1233 1233 args = ['checkout']
1234 1234 if self._svnversion >= (1, 5):
1235 1235 args.append('--force')
1236 1236 # The revision must be specified at the end of the URL to properly
1237 1237 # update to a directory which has since been deleted and recreated.
1238 1238 args.append('%s@%s' % (state[0], state[1]))
1239 1239 status, err = self._svncommand(args, failok=True)
1240 1240 _sanitize(self.ui, self.wvfs, '.svn')
1241 1241 if not re.search('Checked out revision [0-9]+.', status):
1242 1242 if ('is already a working copy for a different URL' in err
1243 1243 and (self._wcchanged()[:2] == (False, False))):
1244 1244 # obstructed but clean working copy, so just blow it away.
1245 1245 self.remove()
1246 1246 self.get(state, overwrite=False)
1247 1247 return
1248 1248 raise error.Abort((status or err).splitlines()[-1])
1249 1249 self.ui.status(status)
1250 1250
1251 1251 @annotatesubrepoerror
1252 1252 def merge(self, state):
1253 1253 old = self._state[1]
1254 1254 new = state[1]
1255 1255 wcrev = self._wcrev()
1256 1256 if new != wcrev:
1257 1257 dirty = old == wcrev or self._wcchanged()[0]
1258 1258 if _updateprompt(self.ui, self, dirty, wcrev, new):
1259 1259 self.get(state, False)
1260 1260
1261 1261 def push(self, opts):
1262 1262 # push is a no-op for SVN
1263 1263 return True
1264 1264
1265 1265 @annotatesubrepoerror
1266 1266 def files(self):
1267 1267 output = self._svncommand(['list', '--recursive', '--xml'])[0]
1268 1268 doc = xml.dom.minidom.parseString(output)
1269 1269 paths = []
1270 1270 for e in doc.getElementsByTagName('entry'):
1271 1271 kind = str(e.getAttribute('kind'))
1272 1272 if kind != 'file':
1273 1273 continue
1274 1274 name = ''.join(c.data for c
1275 1275 in e.getElementsByTagName('name')[0].childNodes
1276 1276 if c.nodeType == c.TEXT_NODE)
1277 1277 paths.append(name.encode('utf-8'))
1278 1278 return paths
1279 1279
1280 1280 def filedata(self, name):
1281 1281 return self._svncommand(['cat'], name)[0]
1282 1282
1283 1283
1284 1284 class gitsubrepo(abstractsubrepo):
1285 1285 def __init__(self, ctx, path, state):
1286 1286 super(gitsubrepo, self).__init__(ctx, path)
1287 1287 self._state = state
1288 1288 self._abspath = ctx.repo().wjoin(path)
1289 1289 self._subparent = ctx.repo()
1290 1290 self._ensuregit()
1291 1291
1292 1292 def _ensuregit(self):
1293 1293 try:
1294 1294 self._gitexecutable = 'git'
1295 1295 out, err = self._gitnodir(['--version'])
1296 1296 except OSError as e:
1297 1297 genericerror = _("error executing git for subrepo '%s': %s")
1298 1298 notfoundhint = _("check git is installed and in your PATH")
1299 1299 if e.errno != errno.ENOENT:
1300 1300 raise error.Abort(genericerror % (self._path, e.strerror))
1301 1301 elif os.name == 'nt':
1302 1302 try:
1303 1303 self._gitexecutable = 'git.cmd'
1304 1304 out, err = self._gitnodir(['--version'])
1305 1305 except OSError as e2:
1306 1306 if e2.errno == errno.ENOENT:
1307 1307 raise error.Abort(_("couldn't find 'git' or 'git.cmd'"
1308 1308 " for subrepo '%s'") % self._path,
1309 1309 hint=notfoundhint)
1310 1310 else:
1311 1311 raise error.Abort(genericerror % (self._path,
1312 1312 e2.strerror))
1313 1313 else:
1314 1314 raise error.Abort(_("couldn't find git for subrepo '%s'")
1315 1315 % self._path, hint=notfoundhint)
1316 1316 versionstatus = self._checkversion(out)
1317 1317 if versionstatus == 'unknown':
1318 1318 self.ui.warn(_('cannot retrieve git version\n'))
1319 1319 elif versionstatus == 'abort':
1320 1320 raise error.Abort(_('git subrepo requires at least 1.6.0 or later'))
1321 1321 elif versionstatus == 'warning':
1322 1322 self.ui.warn(_('git subrepo requires at least 1.6.0 or later\n'))
1323 1323
1324 1324 @staticmethod
1325 1325 def _gitversion(out):
1326 1326 m = re.search(r'^git version (\d+)\.(\d+)\.(\d+)', out)
1327 1327 if m:
1328 1328 return (int(m.group(1)), int(m.group(2)), int(m.group(3)))
1329 1329
1330 1330 m = re.search(r'^git version (\d+)\.(\d+)', out)
1331 1331 if m:
1332 1332 return (int(m.group(1)), int(m.group(2)), 0)
1333 1333
1334 1334 return -1
1335 1335
1336 1336 @staticmethod
1337 1337 def _checkversion(out):
1338 1338 '''ensure git version is new enough
1339 1339
1340 1340 >>> _checkversion = gitsubrepo._checkversion
1341 1341 >>> _checkversion('git version 1.6.0')
1342 1342 'ok'
1343 1343 >>> _checkversion('git version 1.8.5')
1344 1344 'ok'
1345 1345 >>> _checkversion('git version 1.4.0')
1346 1346 'abort'
1347 1347 >>> _checkversion('git version 1.5.0')
1348 1348 'warning'
1349 1349 >>> _checkversion('git version 1.9-rc0')
1350 1350 'ok'
1351 1351 >>> _checkversion('git version 1.9.0.265.g81cdec2')
1352 1352 'ok'
1353 1353 >>> _checkversion('git version 1.9.0.GIT')
1354 1354 'ok'
1355 1355 >>> _checkversion('git version 12345')
1356 1356 'unknown'
1357 1357 >>> _checkversion('no')
1358 1358 'unknown'
1359 1359 '''
1360 1360 version = gitsubrepo._gitversion(out)
1361 1361 # git 1.4.0 can't work at all, but 1.5.X can in at least some cases,
1362 1362 # despite the docstring comment. For now, error on 1.4.0, warn on
1363 1363 # 1.5.0 but attempt to continue.
1364 1364 if version == -1:
1365 1365 return 'unknown'
1366 1366 if version < (1, 5, 0):
1367 1367 return 'abort'
1368 1368 elif version < (1, 6, 0):
1369 1369 return 'warning'
1370 1370 return 'ok'
1371 1371
1372 1372 def _gitcommand(self, commands, env=None, stream=False):
1373 1373 return self._gitdir(commands, env=env, stream=stream)[0]
1374 1374
1375 1375 def _gitdir(self, commands, env=None, stream=False):
1376 1376 return self._gitnodir(commands, env=env, stream=stream,
1377 1377 cwd=self._abspath)
1378 1378
1379 1379 def _gitnodir(self, commands, env=None, stream=False, cwd=None):
1380 1380 """Calls the git command
1381 1381
1382 1382 The methods tries to call the git command. versions prior to 1.6.0
1383 1383 are not supported and very probably fail.
1384 1384 """
1385 1385 self.ui.debug('%s: git %s\n' % (self._relpath, ' '.join(commands)))
1386 if env is None:
1387 env = os.environ.copy()
1388 # fix for Git CVE-2015-7545
1389 if 'GIT_ALLOW_PROTOCOL' not in env:
1390 env['GIT_ALLOW_PROTOCOL'] = 'file:git:http:https:ssh'
1386 1391 # unless ui.quiet is set, print git's stderr,
1387 1392 # which is mostly progress and useful info
1388 1393 errpipe = None
1389 1394 if self.ui.quiet:
1390 1395 errpipe = open(os.devnull, 'w')
1391 1396 p = subprocess.Popen([self._gitexecutable] + commands, bufsize=-1,
1392 1397 cwd=cwd, env=env, close_fds=util.closefds,
1393 1398 stdout=subprocess.PIPE, stderr=errpipe)
1394 1399 if stream:
1395 1400 return p.stdout, None
1396 1401
1397 1402 retdata = p.stdout.read().strip()
1398 1403 # wait for the child to exit to avoid race condition.
1399 1404 p.wait()
1400 1405
1401 1406 if p.returncode != 0 and p.returncode != 1:
1402 1407 # there are certain error codes that are ok
1403 1408 command = commands[0]
1404 1409 if command in ('cat-file', 'symbolic-ref'):
1405 1410 return retdata, p.returncode
1406 1411 # for all others, abort
1407 1412 raise error.Abort('git %s error %d in %s' %
1408 1413 (command, p.returncode, self._relpath))
1409 1414
1410 1415 return retdata, p.returncode
1411 1416
1412 1417 def _gitmissing(self):
1413 1418 return not self.wvfs.exists('.git')
1414 1419
1415 1420 def _gitstate(self):
1416 1421 return self._gitcommand(['rev-parse', 'HEAD'])
1417 1422
1418 1423 def _gitcurrentbranch(self):
1419 1424 current, err = self._gitdir(['symbolic-ref', 'HEAD', '--quiet'])
1420 1425 if err:
1421 1426 current = None
1422 1427 return current
1423 1428
1424 1429 def _gitremote(self, remote):
1425 1430 out = self._gitcommand(['remote', 'show', '-n', remote])
1426 1431 line = out.split('\n')[1]
1427 1432 i = line.index('URL: ') + len('URL: ')
1428 1433 return line[i:]
1429 1434
1430 1435 def _githavelocally(self, revision):
1431 1436 out, code = self._gitdir(['cat-file', '-e', revision])
1432 1437 return code == 0
1433 1438
1434 1439 def _gitisancestor(self, r1, r2):
1435 1440 base = self._gitcommand(['merge-base', r1, r2])
1436 1441 return base == r1
1437 1442
1438 1443 def _gitisbare(self):
1439 1444 return self._gitcommand(['config', '--bool', 'core.bare']) == 'true'
1440 1445
1441 1446 def _gitupdatestat(self):
1442 1447 """This must be run before git diff-index.
1443 1448 diff-index only looks at changes to file stat;
1444 1449 this command looks at file contents and updates the stat."""
1445 1450 self._gitcommand(['update-index', '-q', '--refresh'])
1446 1451
1447 1452 def _gitbranchmap(self):
1448 1453 '''returns 2 things:
1449 1454 a map from git branch to revision
1450 1455 a map from revision to branches'''
1451 1456 branch2rev = {}
1452 1457 rev2branch = {}
1453 1458
1454 1459 out = self._gitcommand(['for-each-ref', '--format',
1455 1460 '%(objectname) %(refname)'])
1456 1461 for line in out.split('\n'):
1457 1462 revision, ref = line.split(' ')
1458 1463 if (not ref.startswith('refs/heads/') and
1459 1464 not ref.startswith('refs/remotes/')):
1460 1465 continue
1461 1466 if ref.startswith('refs/remotes/') and ref.endswith('/HEAD'):
1462 1467 continue # ignore remote/HEAD redirects
1463 1468 branch2rev[ref] = revision
1464 1469 rev2branch.setdefault(revision, []).append(ref)
1465 1470 return branch2rev, rev2branch
1466 1471
1467 1472 def _gittracking(self, branches):
1468 1473 'return map of remote branch to local tracking branch'
1469 1474 # assumes no more than one local tracking branch for each remote
1470 1475 tracking = {}
1471 1476 for b in branches:
1472 1477 if b.startswith('refs/remotes/'):
1473 1478 continue
1474 1479 bname = b.split('/', 2)[2]
1475 1480 remote = self._gitcommand(['config', 'branch.%s.remote' % bname])
1476 1481 if remote:
1477 1482 ref = self._gitcommand(['config', 'branch.%s.merge' % bname])
1478 1483 tracking['refs/remotes/%s/%s' %
1479 1484 (remote, ref.split('/', 2)[2])] = b
1480 1485 return tracking
1481 1486
1482 1487 def _abssource(self, source):
1483 1488 if '://' not in source:
1484 1489 # recognize the scp syntax as an absolute source
1485 1490 colon = source.find(':')
1486 1491 if colon != -1 and '/' not in source[:colon]:
1487 1492 return source
1488 1493 self._subsource = source
1489 1494 return _abssource(self)
1490 1495
1491 1496 def _fetch(self, source, revision):
1492 1497 if self._gitmissing():
1493 1498 source = self._abssource(source)
1494 1499 self.ui.status(_('cloning subrepo %s from %s\n') %
1495 1500 (self._relpath, source))
1496 1501 self._gitnodir(['clone', source, self._abspath])
1497 1502 if self._githavelocally(revision):
1498 1503 return
1499 1504 self.ui.status(_('pulling subrepo %s from %s\n') %
1500 1505 (self._relpath, self._gitremote('origin')))
1501 1506 # try only origin: the originally cloned repo
1502 1507 self._gitcommand(['fetch'])
1503 1508 if not self._githavelocally(revision):
1504 1509 raise error.Abort(_("revision %s does not exist in subrepo %s\n") %
1505 1510 (revision, self._relpath))
1506 1511
1507 1512 @annotatesubrepoerror
1508 1513 def dirty(self, ignoreupdate=False):
1509 1514 if self._gitmissing():
1510 1515 return self._state[1] != ''
1511 1516 if self._gitisbare():
1512 1517 return True
1513 1518 if not ignoreupdate and self._state[1] != self._gitstate():
1514 1519 # different version checked out
1515 1520 return True
1516 1521 # check for staged changes or modified files; ignore untracked files
1517 1522 self._gitupdatestat()
1518 1523 out, code = self._gitdir(['diff-index', '--quiet', 'HEAD'])
1519 1524 return code == 1
1520 1525
1521 1526 def basestate(self):
1522 1527 return self._gitstate()
1523 1528
1524 1529 @annotatesubrepoerror
1525 1530 def get(self, state, overwrite=False):
1526 1531 source, revision, kind = state
1527 1532 if not revision:
1528 1533 self.remove()
1529 1534 return
1530 1535 self._fetch(source, revision)
1531 1536 # if the repo was set to be bare, unbare it
1532 1537 if self._gitisbare():
1533 1538 self._gitcommand(['config', 'core.bare', 'false'])
1534 1539 if self._gitstate() == revision:
1535 1540 self._gitcommand(['reset', '--hard', 'HEAD'])
1536 1541 return
1537 1542 elif self._gitstate() == revision:
1538 1543 if overwrite:
1539 1544 # first reset the index to unmark new files for commit, because
1540 1545 # reset --hard will otherwise throw away files added for commit,
1541 1546 # not just unmark them.
1542 1547 self._gitcommand(['reset', 'HEAD'])
1543 1548 self._gitcommand(['reset', '--hard', 'HEAD'])
1544 1549 return
1545 1550 branch2rev, rev2branch = self._gitbranchmap()
1546 1551
1547 1552 def checkout(args):
1548 1553 cmd = ['checkout']
1549 1554 if overwrite:
1550 1555 # first reset the index to unmark new files for commit, because
1551 1556 # the -f option will otherwise throw away files added for
1552 1557 # commit, not just unmark them.
1553 1558 self._gitcommand(['reset', 'HEAD'])
1554 1559 cmd.append('-f')
1555 1560 self._gitcommand(cmd + args)
1556 1561 _sanitize(self.ui, self.wvfs, '.git')
1557 1562
1558 1563 def rawcheckout():
1559 1564 # no branch to checkout, check it out with no branch
1560 1565 self.ui.warn(_('checking out detached HEAD in subrepo %s\n') %
1561 1566 self._relpath)
1562 1567 self.ui.warn(_('check out a git branch if you intend '
1563 1568 'to make changes\n'))
1564 1569 checkout(['-q', revision])
1565 1570
1566 1571 if revision not in rev2branch:
1567 1572 rawcheckout()
1568 1573 return
1569 1574 branches = rev2branch[revision]
1570 1575 firstlocalbranch = None
1571 1576 for b in branches:
1572 1577 if b == 'refs/heads/master':
1573 1578 # master trumps all other branches
1574 1579 checkout(['refs/heads/master'])
1575 1580 return
1576 1581 if not firstlocalbranch and not b.startswith('refs/remotes/'):
1577 1582 firstlocalbranch = b
1578 1583 if firstlocalbranch:
1579 1584 checkout([firstlocalbranch])
1580 1585 return
1581 1586
1582 1587 tracking = self._gittracking(branch2rev.keys())
1583 1588 # choose a remote branch already tracked if possible
1584 1589 remote = branches[0]
1585 1590 if remote not in tracking:
1586 1591 for b in branches:
1587 1592 if b in tracking:
1588 1593 remote = b
1589 1594 break
1590 1595
1591 1596 if remote not in tracking:
1592 1597 # create a new local tracking branch
1593 1598 local = remote.split('/', 3)[3]
1594 1599 checkout(['-b', local, remote])
1595 1600 elif self._gitisancestor(branch2rev[tracking[remote]], remote):
1596 1601 # When updating to a tracked remote branch,
1597 1602 # if the local tracking branch is downstream of it,
1598 1603 # a normal `git pull` would have performed a "fast-forward merge"
1599 1604 # which is equivalent to updating the local branch to the remote.
1600 1605 # Since we are only looking at branching at update, we need to
1601 1606 # detect this situation and perform this action lazily.
1602 1607 if tracking[remote] != self._gitcurrentbranch():
1603 1608 checkout([tracking[remote]])
1604 1609 self._gitcommand(['merge', '--ff', remote])
1605 1610 _sanitize(self.ui, self.wvfs, '.git')
1606 1611 else:
1607 1612 # a real merge would be required, just checkout the revision
1608 1613 rawcheckout()
1609 1614
1610 1615 @annotatesubrepoerror
1611 1616 def commit(self, text, user, date):
1612 1617 if self._gitmissing():
1613 1618 raise error.Abort(_("subrepo %s is missing") % self._relpath)
1614 1619 cmd = ['commit', '-a', '-m', text]
1615 1620 env = os.environ.copy()
1616 1621 if user:
1617 1622 cmd += ['--author', user]
1618 1623 if date:
1619 1624 # git's date parser silently ignores when seconds < 1e9
1620 1625 # convert to ISO8601
1621 1626 env['GIT_AUTHOR_DATE'] = util.datestr(date,
1622 1627 '%Y-%m-%dT%H:%M:%S %1%2')
1623 1628 self._gitcommand(cmd, env=env)
1624 1629 # make sure commit works otherwise HEAD might not exist under certain
1625 1630 # circumstances
1626 1631 return self._gitstate()
1627 1632
1628 1633 @annotatesubrepoerror
1629 1634 def merge(self, state):
1630 1635 source, revision, kind = state
1631 1636 self._fetch(source, revision)
1632 1637 base = self._gitcommand(['merge-base', revision, self._state[1]])
1633 1638 self._gitupdatestat()
1634 1639 out, code = self._gitdir(['diff-index', '--quiet', 'HEAD'])
1635 1640
1636 1641 def mergefunc():
1637 1642 if base == revision:
1638 1643 self.get(state) # fast forward merge
1639 1644 elif base != self._state[1]:
1640 1645 self._gitcommand(['merge', '--no-commit', revision])
1641 1646 _sanitize(self.ui, self.wvfs, '.git')
1642 1647
1643 1648 if self.dirty():
1644 1649 if self._gitstate() != revision:
1645 1650 dirty = self._gitstate() == self._state[1] or code != 0
1646 1651 if _updateprompt(self.ui, self, dirty,
1647 1652 self._state[1][:7], revision[:7]):
1648 1653 mergefunc()
1649 1654 else:
1650 1655 mergefunc()
1651 1656
1652 1657 @annotatesubrepoerror
1653 1658 def push(self, opts):
1654 1659 force = opts.get('force')
1655 1660
1656 1661 if not self._state[1]:
1657 1662 return True
1658 1663 if self._gitmissing():
1659 1664 raise error.Abort(_("subrepo %s is missing") % self._relpath)
1660 1665 # if a branch in origin contains the revision, nothing to do
1661 1666 branch2rev, rev2branch = self._gitbranchmap()
1662 1667 if self._state[1] in rev2branch:
1663 1668 for b in rev2branch[self._state[1]]:
1664 1669 if b.startswith('refs/remotes/origin/'):
1665 1670 return True
1666 1671 for b, revision in branch2rev.iteritems():
1667 1672 if b.startswith('refs/remotes/origin/'):
1668 1673 if self._gitisancestor(self._state[1], revision):
1669 1674 return True
1670 1675 # otherwise, try to push the currently checked out branch
1671 1676 cmd = ['push']
1672 1677 if force:
1673 1678 cmd.append('--force')
1674 1679
1675 1680 current = self._gitcurrentbranch()
1676 1681 if current:
1677 1682 # determine if the current branch is even useful
1678 1683 if not self._gitisancestor(self._state[1], current):
1679 1684 self.ui.warn(_('unrelated git branch checked out '
1680 1685 'in subrepo %s\n') % self._relpath)
1681 1686 return False
1682 1687 self.ui.status(_('pushing branch %s of subrepo %s\n') %
1683 1688 (current.split('/', 2)[2], self._relpath))
1684 1689 ret = self._gitdir(cmd + ['origin', current])
1685 1690 return ret[1] == 0
1686 1691 else:
1687 1692 self.ui.warn(_('no branch checked out in subrepo %s\n'
1688 1693 'cannot push revision %s\n') %
1689 1694 (self._relpath, self._state[1]))
1690 1695 return False
1691 1696
1692 1697 @annotatesubrepoerror
1693 1698 def add(self, ui, match, prefix, explicitonly, **opts):
1694 1699 if self._gitmissing():
1695 1700 return []
1696 1701
1697 1702 (modified, added, removed,
1698 1703 deleted, unknown, ignored, clean) = self.status(None, unknown=True,
1699 1704 clean=True)
1700 1705
1701 1706 tracked = set()
1702 1707 # dirstates 'amn' warn, 'r' is added again
1703 1708 for l in (modified, added, deleted, clean):
1704 1709 tracked.update(l)
1705 1710
1706 1711 # Unknown files not of interest will be rejected by the matcher
1707 1712 files = unknown
1708 1713 files.extend(match.files())
1709 1714
1710 1715 rejected = []
1711 1716
1712 1717 files = [f for f in sorted(set(files)) if match(f)]
1713 1718 for f in files:
1714 1719 exact = match.exact(f)
1715 1720 command = ["add"]
1716 1721 if exact:
1717 1722 command.append("-f") #should be added, even if ignored
1718 1723 if ui.verbose or not exact:
1719 1724 ui.status(_('adding %s\n') % match.rel(f))
1720 1725
1721 1726 if f in tracked: # hg prints 'adding' even if already tracked
1722 1727 if exact:
1723 1728 rejected.append(f)
1724 1729 continue
1725 1730 if not opts.get('dry_run'):
1726 1731 self._gitcommand(command + [f])
1727 1732
1728 1733 for f in rejected:
1729 1734 ui.warn(_("%s already tracked!\n") % match.abs(f))
1730 1735
1731 1736 return rejected
1732 1737
1733 1738 @annotatesubrepoerror
1734 1739 def remove(self):
1735 1740 if self._gitmissing():
1736 1741 return
1737 1742 if self.dirty():
1738 1743 self.ui.warn(_('not removing repo %s because '
1739 1744 'it has changes.\n') % self._relpath)
1740 1745 return
1741 1746 # we can't fully delete the repository as it may contain
1742 1747 # local-only history
1743 1748 self.ui.note(_('removing subrepo %s\n') % self._relpath)
1744 1749 self._gitcommand(['config', 'core.bare', 'true'])
1745 1750 for f, kind in self.wvfs.readdir():
1746 1751 if f == '.git':
1747 1752 continue
1748 1753 if kind == stat.S_IFDIR:
1749 1754 self.wvfs.rmtree(f)
1750 1755 else:
1751 1756 self.wvfs.unlink(f)
1752 1757
1753 1758 def archive(self, archiver, prefix, match=None):
1754 1759 total = 0
1755 1760 source, revision = self._state
1756 1761 if not revision:
1757 1762 return total
1758 1763 self._fetch(source, revision)
1759 1764
1760 1765 # Parse git's native archive command.
1761 1766 # This should be much faster than manually traversing the trees
1762 1767 # and objects with many subprocess calls.
1763 1768 tarstream = self._gitcommand(['archive', revision], stream=True)
1764 1769 tar = tarfile.open(fileobj=tarstream, mode='r|')
1765 1770 relpath = subrelpath(self)
1766 1771 self.ui.progress(_('archiving (%s)') % relpath, 0, unit=_('files'))
1767 1772 for i, info in enumerate(tar):
1768 1773 if info.isdir():
1769 1774 continue
1770 1775 if match and not match(info.name):
1771 1776 continue
1772 1777 if info.issym():
1773 1778 data = info.linkname
1774 1779 else:
1775 1780 data = tar.extractfile(info).read()
1776 1781 archiver.addfile(prefix + self._path + '/' + info.name,
1777 1782 info.mode, info.issym(), data)
1778 1783 total += 1
1779 1784 self.ui.progress(_('archiving (%s)') % relpath, i + 1,
1780 1785 unit=_('files'))
1781 1786 self.ui.progress(_('archiving (%s)') % relpath, None)
1782 1787 return total
1783 1788
1784 1789
1785 1790 @annotatesubrepoerror
1786 1791 def cat(self, match, prefix, **opts):
1787 1792 rev = self._state[1]
1788 1793 if match.anypats():
1789 1794 return 1 #No support for include/exclude yet
1790 1795
1791 1796 if not match.files():
1792 1797 return 1
1793 1798
1794 1799 for f in match.files():
1795 1800 output = self._gitcommand(["show", "%s:%s" % (rev, f)])
1796 1801 fp = cmdutil.makefileobj(self._subparent, opts.get('output'),
1797 1802 self._ctx.node(),
1798 1803 pathname=self.wvfs.reljoin(prefix, f))
1799 1804 fp.write(output)
1800 1805 fp.close()
1801 1806 return 0
1802 1807
1803 1808
1804 1809 @annotatesubrepoerror
1805 1810 def status(self, rev2, **opts):
1806 1811 rev1 = self._state[1]
1807 1812 if self._gitmissing() or not rev1:
1808 1813 # if the repo is missing, return no results
1809 1814 return scmutil.status([], [], [], [], [], [], [])
1810 1815 modified, added, removed = [], [], []
1811 1816 self._gitupdatestat()
1812 1817 if rev2:
1813 1818 command = ['diff-tree', '--no-renames', '-r', rev1, rev2]
1814 1819 else:
1815 1820 command = ['diff-index', '--no-renames', rev1]
1816 1821 out = self._gitcommand(command)
1817 1822 for line in out.split('\n'):
1818 1823 tab = line.find('\t')
1819 1824 if tab == -1:
1820 1825 continue
1821 1826 status, f = line[tab - 1], line[tab + 1:]
1822 1827 if status == 'M':
1823 1828 modified.append(f)
1824 1829 elif status == 'A':
1825 1830 added.append(f)
1826 1831 elif status == 'D':
1827 1832 removed.append(f)
1828 1833
1829 1834 deleted, unknown, ignored, clean = [], [], [], []
1830 1835
1831 1836 command = ['status', '--porcelain', '-z']
1832 1837 if opts.get('unknown'):
1833 1838 command += ['--untracked-files=all']
1834 1839 if opts.get('ignored'):
1835 1840 command += ['--ignored']
1836 1841 out = self._gitcommand(command)
1837 1842
1838 1843 changedfiles = set()
1839 1844 changedfiles.update(modified)
1840 1845 changedfiles.update(added)
1841 1846 changedfiles.update(removed)
1842 1847 for line in out.split('\0'):
1843 1848 if not line:
1844 1849 continue
1845 1850 st = line[0:2]
1846 1851 #moves and copies show 2 files on one line
1847 1852 if line.find('\0') >= 0:
1848 1853 filename1, filename2 = line[3:].split('\0')
1849 1854 else:
1850 1855 filename1 = line[3:]
1851 1856 filename2 = None
1852 1857
1853 1858 changedfiles.add(filename1)
1854 1859 if filename2:
1855 1860 changedfiles.add(filename2)
1856 1861
1857 1862 if st == '??':
1858 1863 unknown.append(filename1)
1859 1864 elif st == '!!':
1860 1865 ignored.append(filename1)
1861 1866
1862 1867 if opts.get('clean'):
1863 1868 out = self._gitcommand(['ls-files'])
1864 1869 for f in out.split('\n'):
1865 1870 if not f in changedfiles:
1866 1871 clean.append(f)
1867 1872
1868 1873 return scmutil.status(modified, added, removed, deleted,
1869 1874 unknown, ignored, clean)
1870 1875
1871 1876 @annotatesubrepoerror
1872 1877 def diff(self, ui, diffopts, node2, match, prefix, **opts):
1873 1878 node1 = self._state[1]
1874 1879 cmd = ['diff', '--no-renames']
1875 1880 if opts['stat']:
1876 1881 cmd.append('--stat')
1877 1882 else:
1878 1883 # for Git, this also implies '-p'
1879 1884 cmd.append('-U%d' % diffopts.context)
1880 1885
1881 1886 gitprefix = self.wvfs.reljoin(prefix, self._path)
1882 1887
1883 1888 if diffopts.noprefix:
1884 1889 cmd.extend(['--src-prefix=%s/' % gitprefix,
1885 1890 '--dst-prefix=%s/' % gitprefix])
1886 1891 else:
1887 1892 cmd.extend(['--src-prefix=a/%s/' % gitprefix,
1888 1893 '--dst-prefix=b/%s/' % gitprefix])
1889 1894
1890 1895 if diffopts.ignorews:
1891 1896 cmd.append('--ignore-all-space')
1892 1897 if diffopts.ignorewsamount:
1893 1898 cmd.append('--ignore-space-change')
1894 1899 if self._gitversion(self._gitcommand(['--version'])) >= (1, 8, 4) \
1895 1900 and diffopts.ignoreblanklines:
1896 1901 cmd.append('--ignore-blank-lines')
1897 1902
1898 1903 cmd.append(node1)
1899 1904 if node2:
1900 1905 cmd.append(node2)
1901 1906
1902 1907 output = ""
1903 1908 if match.always():
1904 1909 output += self._gitcommand(cmd) + '\n'
1905 1910 else:
1906 1911 st = self.status(node2)[:3]
1907 1912 files = [f for sublist in st for f in sublist]
1908 1913 for f in files:
1909 1914 if match(f):
1910 1915 output += self._gitcommand(cmd + ['--', f]) + '\n'
1911 1916
1912 1917 if output.strip():
1913 1918 ui.write(output)
1914 1919
1915 1920 @annotatesubrepoerror
1916 1921 def revert(self, substate, *pats, **opts):
1917 1922 self.ui.status(_('reverting subrepo %s\n') % substate[0])
1918 1923 if not opts.get('no_backup'):
1919 1924 status = self.status(None)
1920 1925 names = status.modified
1921 1926 for name in names:
1922 1927 bakname = scmutil.origpath(self.ui, self._subparent, name)
1923 1928 self.ui.note(_('saving current version of %s as %s\n') %
1924 1929 (name, bakname))
1925 1930 self.wvfs.rename(name, bakname)
1926 1931
1927 1932 if not opts.get('dry_run'):
1928 1933 self.get(substate, overwrite=True)
1929 1934 return []
1930 1935
1931 1936 def shortid(self, revid):
1932 1937 return revid[:7]
1933 1938
1934 1939 types = {
1935 1940 'hg': hgsubrepo,
1936 1941 'svn': svnsubrepo,
1937 1942 'git': gitsubrepo,
1938 1943 }
@@ -1,1135 +1,1167 b''
1 1 #require git
2 2
3 3 make git commits repeatable
4 4
5 5 $ echo "[core]" >> $HOME/.gitconfig
6 6 $ echo "autocrlf = false" >> $HOME/.gitconfig
7 7 $ GIT_AUTHOR_NAME='test'; export GIT_AUTHOR_NAME
8 8 $ GIT_AUTHOR_EMAIL='test@example.org'; export GIT_AUTHOR_EMAIL
9 9 $ GIT_AUTHOR_DATE='1234567891 +0000'; export GIT_AUTHOR_DATE
10 10 $ GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"; export GIT_COMMITTER_NAME
11 11 $ GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"; export GIT_COMMITTER_EMAIL
12 12 $ GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE"; export GIT_COMMITTER_DATE
13 13 $ GIT_CONFIG_NOSYSTEM=1; export GIT_CONFIG_NOSYSTEM
14 14
15 15 root hg repo
16 16
17 17 $ hg init t
18 18 $ cd t
19 19 $ echo a > a
20 20 $ hg add a
21 21 $ hg commit -m a
22 22 $ cd ..
23 23
24 24 new external git repo
25 25
26 26 $ mkdir gitroot
27 27 $ cd gitroot
28 28 $ git init -q
29 29 $ echo g > g
30 30 $ git add g
31 31 $ git commit -q -m g
32 32
33 33 add subrepo clone
34 34
35 35 $ cd ../t
36 36 $ echo 's = [git]../gitroot' > .hgsub
37 37 $ git clone -q ../gitroot s
38 38 $ hg add .hgsub
39 39 $ hg commit -m 'new git subrepo'
40 40 $ hg debugsub
41 41 path s
42 42 source ../gitroot
43 43 revision da5f5b1d8ffcf62fb8327bcd3c89a4367a6018e7
44 44
45 45 record a new commit from upstream from a different branch
46 46
47 47 $ cd ../gitroot
48 48 $ git checkout -q -b testing
49 49 $ echo gg >> g
50 50 $ git commit -q -a -m gg
51 51
52 52 $ cd ../t/s
53 53 $ git pull -q >/dev/null 2>/dev/null
54 54 $ git checkout -q -b testing origin/testing >/dev/null
55 55
56 56 $ cd ..
57 57 $ hg status --subrepos
58 58 M s/g
59 59 $ hg commit -m 'update git subrepo'
60 60 $ hg debugsub
61 61 path s
62 62 source ../gitroot
63 63 revision 126f2a14290cd5ce061fdedc430170e8d39e1c5a
64 64
65 65 make $GITROOT pushable, by replacing it with a clone with nothing checked out
66 66
67 67 $ cd ..
68 68 $ git clone gitroot gitrootbare --bare -q
69 69 $ rm -rf gitroot
70 70 $ mv gitrootbare gitroot
71 71
72 72 clone root
73 73
74 74 $ cd t
75 75 $ hg clone . ../tc 2> /dev/null
76 76 updating to branch default
77 77 cloning subrepo s from $TESTTMP/gitroot
78 78 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
79 79 $ cd ../tc
80 80 $ hg debugsub
81 81 path s
82 82 source ../gitroot
83 83 revision 126f2a14290cd5ce061fdedc430170e8d39e1c5a
84 84
85 85 update to previous substate
86 86
87 87 $ hg update 1 -q
88 88 $ cat s/g
89 89 g
90 90 $ hg debugsub
91 91 path s
92 92 source ../gitroot
93 93 revision da5f5b1d8ffcf62fb8327bcd3c89a4367a6018e7
94 94
95 95 clone root, make local change
96 96
97 97 $ cd ../t
98 98 $ hg clone . ../ta 2> /dev/null
99 99 updating to branch default
100 100 cloning subrepo s from $TESTTMP/gitroot
101 101 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
102 102
103 103 $ cd ../ta
104 104 $ echo ggg >> s/g
105 105 $ hg status --subrepos
106 106 M s/g
107 107 $ hg diff --subrepos
108 108 diff --git a/s/g b/s/g
109 109 index 089258f..85341ee 100644
110 110 --- a/s/g
111 111 +++ b/s/g
112 112 @@ -1,2 +1,3 @@
113 113 g
114 114 gg
115 115 +ggg
116 116 $ hg commit --subrepos -m ggg
117 117 committing subrepository s
118 118 $ hg debugsub
119 119 path s
120 120 source ../gitroot
121 121 revision 79695940086840c99328513acbe35f90fcd55e57
122 122
123 123 clone root separately, make different local change
124 124
125 125 $ cd ../t
126 126 $ hg clone . ../tb 2> /dev/null
127 127 updating to branch default
128 128 cloning subrepo s from $TESTTMP/gitroot
129 129 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
130 130
131 131 $ cd ../tb/s
132 132 $ hg status --subrepos
133 133 $ echo f > f
134 134 $ hg status --subrepos
135 135 ? s/f
136 136 $ hg add .
137 137 adding f
138 138 $ git add f
139 139 $ cd ..
140 140
141 141 $ hg status --subrepos
142 142 A s/f
143 143 $ hg commit --subrepos -m f
144 144 committing subrepository s
145 145 $ hg debugsub
146 146 path s
147 147 source ../gitroot
148 148 revision aa84837ccfbdfedcdcdeeedc309d73e6eb069edc
149 149
150 150 user b push changes
151 151
152 152 $ hg push 2>/dev/null
153 153 pushing to $TESTTMP/t (glob)
154 154 pushing branch testing of subrepo s
155 155 searching for changes
156 156 adding changesets
157 157 adding manifests
158 158 adding file changes
159 159 added 1 changesets with 1 changes to 1 files
160 160
161 161 user a pulls, merges, commits
162 162
163 163 $ cd ../ta
164 164 $ hg pull
165 165 pulling from $TESTTMP/t (glob)
166 166 searching for changes
167 167 adding changesets
168 168 adding manifests
169 169 adding file changes
170 170 added 1 changesets with 1 changes to 1 files (+1 heads)
171 171 (run 'hg heads' to see heads, 'hg merge' to merge)
172 172 $ hg merge 2>/dev/null
173 173 subrepository s diverged (local revision: 7969594, remote revision: aa84837)
174 174 (M)erge, keep (l)ocal or keep (r)emote? m
175 175 pulling subrepo s from $TESTTMP/gitroot
176 176 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
177 177 (branch merge, don't forget to commit)
178 178 $ hg st --subrepos s
179 179 A s/f
180 180 $ cat s/f
181 181 f
182 182 $ cat s/g
183 183 g
184 184 gg
185 185 ggg
186 186 $ hg commit --subrepos -m 'merge'
187 187 committing subrepository s
188 188 $ hg status --subrepos --rev 1:5
189 189 M .hgsubstate
190 190 M s/g
191 191 A s/f
192 192 $ hg debugsub
193 193 path s
194 194 source ../gitroot
195 195 revision f47b465e1bce645dbf37232a00574aa1546ca8d3
196 196 $ hg push 2>/dev/null
197 197 pushing to $TESTTMP/t (glob)
198 198 pushing branch testing of subrepo s
199 199 searching for changes
200 200 adding changesets
201 201 adding manifests
202 202 adding file changes
203 203 added 2 changesets with 2 changes to 1 files
204 204
205 205 make upstream git changes
206 206
207 207 $ cd ..
208 208 $ git clone -q gitroot gitclone
209 209 $ cd gitclone
210 210 $ echo ff >> f
211 211 $ git commit -q -a -m ff
212 212 $ echo fff >> f
213 213 $ git commit -q -a -m fff
214 214 $ git push origin testing 2>/dev/null
215 215
216 216 make and push changes to hg without updating the subrepo
217 217
218 218 $ cd ../t
219 219 $ hg clone . ../td 2>&1 | egrep -v '^Cloning into|^done\.'
220 220 updating to branch default
221 221 cloning subrepo s from $TESTTMP/gitroot
222 222 checking out detached HEAD in subrepo s
223 223 check out a git branch if you intend to make changes
224 224 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
225 225 $ cd ../td
226 226 $ echo aa >> a
227 227 $ hg commit -m aa
228 228 $ hg push
229 229 pushing to $TESTTMP/t (glob)
230 230 searching for changes
231 231 adding changesets
232 232 adding manifests
233 233 adding file changes
234 234 added 1 changesets with 1 changes to 1 files
235 235
236 236 sync to upstream git, distribute changes
237 237
238 238 $ cd ../ta
239 239 $ hg pull -u -q
240 240 $ cd s
241 241 $ git pull -q >/dev/null 2>/dev/null
242 242 $ cd ..
243 243 $ hg commit -m 'git upstream sync'
244 244 $ hg debugsub
245 245 path s
246 246 source ../gitroot
247 247 revision 32a343883b74769118bb1d3b4b1fbf9156f4dddc
248 248 $ hg push -q
249 249
250 250 $ cd ../tb
251 251 $ hg pull -q
252 252 $ hg update 2>/dev/null
253 253 pulling subrepo s from $TESTTMP/gitroot
254 254 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
255 255 $ hg debugsub
256 256 path s
257 257 source ../gitroot
258 258 revision 32a343883b74769118bb1d3b4b1fbf9156f4dddc
259 259
260 260 create a new git branch
261 261
262 262 $ cd s
263 263 $ git checkout -b b2
264 264 Switched to a new branch 'b2'
265 265 $ echo a>a
266 266 $ git add a
267 267 $ git commit -qm 'add a'
268 268 $ cd ..
269 269 $ hg commit -m 'add branch in s'
270 270
271 271 pulling new git branch should not create tracking branch named 'origin/b2'
272 272 (issue3870)
273 273 $ cd ../td/s
274 274 $ git remote set-url origin $TESTTMP/tb/s
275 275 $ git branch --no-track oldtesting
276 276 $ cd ..
277 277 $ hg pull -q ../tb
278 278 $ hg up
279 279 From $TESTTMP/tb/s
280 280 * [new branch] b2 -> origin/b2
281 281 Previous HEAD position was f47b465... merge
282 282 Switched to a new branch 'b2'
283 283 pulling subrepo s from $TESTTMP/tb/s
284 284 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
285 285
286 286 update to a revision without the subrepo, keeping the local git repository
287 287
288 288 $ cd ../t
289 289 $ hg up 0
290 290 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
291 291 $ ls -a s
292 292 .
293 293 ..
294 294 .git
295 295
296 296 $ hg up 2
297 297 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
298 298 $ ls -a s
299 299 .
300 300 ..
301 301 .git
302 302 g
303 303
304 304 archive subrepos
305 305
306 306 $ cd ../tc
307 307 $ hg pull -q
308 308 $ hg archive --subrepos -r 5 ../archive 2>/dev/null
309 309 pulling subrepo s from $TESTTMP/gitroot
310 310 $ cd ../archive
311 311 $ cat s/f
312 312 f
313 313 $ cat s/g
314 314 g
315 315 gg
316 316 ggg
317 317
318 318 $ hg -R ../tc archive --subrepo -r 5 -X ../tc/**f ../archive_x 2>/dev/null
319 319 $ find ../archive_x | sort | grep -v pax_global_header
320 320 ../archive_x
321 321 ../archive_x/.hg_archival.txt
322 322 ../archive_x/.hgsub
323 323 ../archive_x/.hgsubstate
324 324 ../archive_x/a
325 325 ../archive_x/s
326 326 ../archive_x/s/g
327 327
328 328 $ hg -R ../tc archive -S ../archive.tgz --prefix '.' 2>/dev/null
329 329 $ tar -tzf ../archive.tgz | sort | grep -v pax_global_header
330 330 .hg_archival.txt
331 331 .hgsub
332 332 .hgsubstate
333 333 a
334 334 s/g
335 335
336 336 create nested repo
337 337
338 338 $ cd ..
339 339 $ hg init outer
340 340 $ cd outer
341 341 $ echo b>b
342 342 $ hg add b
343 343 $ hg commit -m b
344 344
345 345 $ hg clone ../t inner 2> /dev/null
346 346 updating to branch default
347 347 cloning subrepo s from $TESTTMP/gitroot
348 348 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
349 349 $ echo inner = inner > .hgsub
350 350 $ hg add .hgsub
351 351 $ hg commit -m 'nested sub'
352 352
353 353 nested commit
354 354
355 355 $ echo ffff >> inner/s/f
356 356 $ hg status --subrepos
357 357 M inner/s/f
358 358 $ hg commit --subrepos -m nested
359 359 committing subrepository inner
360 360 committing subrepository inner/s (glob)
361 361
362 362 nested archive
363 363
364 364 $ hg archive --subrepos ../narchive
365 365 $ ls ../narchive/inner/s | grep -v pax_global_header
366 366 f
367 367 g
368 368
369 369 relative source expansion
370 370
371 371 $ cd ..
372 372 $ mkdir d
373 373 $ hg clone t d/t 2> /dev/null
374 374 updating to branch default
375 375 cloning subrepo s from $TESTTMP/gitroot
376 376 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
377 377
378 378 Don't crash if the subrepo is missing
379 379
380 380 $ hg clone t missing -q
381 381 $ cd missing
382 382 $ rm -rf s
383 383 $ hg status -S
384 384 $ hg sum | grep commit
385 385 commit: 1 subrepos
386 386 $ hg push -q
387 387 abort: subrepo s is missing (in subrepo s)
388 388 [255]
389 389 $ hg commit --subrepos -qm missing
390 390 abort: subrepo s is missing (in subrepo s)
391 391 [255]
392 392
393 393 #if symlink
394 394 Don't crash if subrepo is a broken symlink
395 395 $ ln -s broken s
396 396 $ hg status -S
397 397 $ hg push -q
398 398 abort: subrepo s is missing (in subrepo s)
399 399 [255]
400 400 $ hg commit --subrepos -qm missing
401 401 abort: subrepo s is missing (in subrepo s)
402 402 [255]
403 403 $ rm s
404 404 #endif
405 405
406 406 $ hg update -C 2> /dev/null
407 407 cloning subrepo s from $TESTTMP/gitroot
408 408 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
409 409 $ hg sum | grep commit
410 410 commit: (clean)
411 411
412 412 Don't crash if the .hgsubstate entry is missing
413 413
414 414 $ hg update 1 -q
415 415 $ hg rm .hgsubstate
416 416 $ hg commit .hgsubstate -m 'no substate'
417 417 nothing changed
418 418 [1]
419 419 $ hg tag -l nosubstate
420 420 $ hg manifest
421 421 .hgsub
422 422 .hgsubstate
423 423 a
424 424
425 425 $ hg status -S
426 426 R .hgsubstate
427 427 $ hg sum | grep commit
428 428 commit: 1 removed, 1 subrepos (new branch head)
429 429
430 430 $ hg commit -m 'restore substate'
431 431 nothing changed
432 432 [1]
433 433 $ hg manifest
434 434 .hgsub
435 435 .hgsubstate
436 436 a
437 437 $ hg sum | grep commit
438 438 commit: 1 removed, 1 subrepos (new branch head)
439 439
440 440 $ hg update -qC nosubstate
441 441 $ ls s
442 442 g
443 443
444 444 issue3109: false positives in git diff-index
445 445
446 446 $ hg update -q
447 447 $ touch -t 200001010000 s/g
448 448 $ hg status --subrepos
449 449 $ touch -t 200001010000 s/g
450 450 $ hg sum | grep commit
451 451 commit: (clean)
452 452
453 453 Check hg update --clean
454 454 $ cd $TESTTMP/ta
455 455 $ echo > s/g
456 456 $ cd s
457 457 $ echo c1 > f1
458 458 $ echo c1 > f2
459 459 $ git add f1
460 460 $ cd ..
461 461 $ hg status -S
462 462 M s/g
463 463 A s/f1
464 464 ? s/f2
465 465 $ ls s
466 466 f
467 467 f1
468 468 f2
469 469 g
470 470 $ hg update --clean
471 471 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
472 472 $ hg status -S
473 473 ? s/f1
474 474 ? s/f2
475 475 $ ls s
476 476 f
477 477 f1
478 478 f2
479 479 g
480 480
481 481 Sticky subrepositories, no changes
482 482 $ cd $TESTTMP/ta
483 483 $ hg id -n
484 484 7
485 485 $ cd s
486 486 $ git rev-parse HEAD
487 487 32a343883b74769118bb1d3b4b1fbf9156f4dddc
488 488 $ cd ..
489 489 $ hg update 1 > /dev/null 2>&1
490 490 $ hg id -n
491 491 1
492 492 $ cd s
493 493 $ git rev-parse HEAD
494 494 da5f5b1d8ffcf62fb8327bcd3c89a4367a6018e7
495 495 $ cd ..
496 496
497 497 Sticky subrepositories, file changes
498 498 $ touch s/f1
499 499 $ cd s
500 500 $ git add f1
501 501 $ cd ..
502 502 $ hg id -n
503 503 1+
504 504 $ cd s
505 505 $ git rev-parse HEAD
506 506 da5f5b1d8ffcf62fb8327bcd3c89a4367a6018e7
507 507 $ cd ..
508 508 $ hg update 4
509 509 subrepository s diverged (local revision: da5f5b1, remote revision: aa84837)
510 510 (M)erge, keep (l)ocal or keep (r)emote? m
511 511 subrepository sources for s differ
512 512 use (l)ocal source (da5f5b1) or (r)emote source (aa84837)? l
513 513 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
514 514 $ hg id -n
515 515 4+
516 516 $ cd s
517 517 $ git rev-parse HEAD
518 518 da5f5b1d8ffcf62fb8327bcd3c89a4367a6018e7
519 519 $ cd ..
520 520 $ hg update --clean tip > /dev/null 2>&1
521 521
522 522 Sticky subrepository, revision updates
523 523 $ hg id -n
524 524 7
525 525 $ cd s
526 526 $ git rev-parse HEAD
527 527 32a343883b74769118bb1d3b4b1fbf9156f4dddc
528 528 $ cd ..
529 529 $ cd s
530 530 $ git checkout aa84837ccfbdfedcdcdeeedc309d73e6eb069edc
531 531 Previous HEAD position was 32a3438... fff
532 532 HEAD is now at aa84837... f
533 533 $ cd ..
534 534 $ hg update 1
535 535 subrepository s diverged (local revision: 32a3438, remote revision: da5f5b1)
536 536 (M)erge, keep (l)ocal or keep (r)emote? m
537 537 subrepository sources for s differ (in checked out version)
538 538 use (l)ocal source (32a3438) or (r)emote source (da5f5b1)? l
539 539 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
540 540 $ hg id -n
541 541 1+
542 542 $ cd s
543 543 $ git rev-parse HEAD
544 544 aa84837ccfbdfedcdcdeeedc309d73e6eb069edc
545 545 $ cd ..
546 546
547 547 Sticky subrepository, file changes and revision updates
548 548 $ touch s/f1
549 549 $ cd s
550 550 $ git add f1
551 551 $ git rev-parse HEAD
552 552 aa84837ccfbdfedcdcdeeedc309d73e6eb069edc
553 553 $ cd ..
554 554 $ hg id -n
555 555 1+
556 556 $ hg update 7
557 557 subrepository s diverged (local revision: 32a3438, remote revision: 32a3438)
558 558 (M)erge, keep (l)ocal or keep (r)emote? m
559 559 subrepository sources for s differ
560 560 use (l)ocal source (32a3438) or (r)emote source (32a3438)? l
561 561 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
562 562 $ hg id -n
563 563 7+
564 564 $ cd s
565 565 $ git rev-parse HEAD
566 566 aa84837ccfbdfedcdcdeeedc309d73e6eb069edc
567 567 $ cd ..
568 568
569 569 Sticky repository, update --clean
570 570 $ hg update --clean tip 2>/dev/null
571 571 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
572 572 $ hg id -n
573 573 7
574 574 $ cd s
575 575 $ git rev-parse HEAD
576 576 32a343883b74769118bb1d3b4b1fbf9156f4dddc
577 577 $ cd ..
578 578
579 579 Test subrepo already at intended revision:
580 580 $ cd s
581 581 $ git checkout 32a343883b74769118bb1d3b4b1fbf9156f4dddc
582 582 HEAD is now at 32a3438... fff
583 583 $ cd ..
584 584 $ hg update 1
585 585 Previous HEAD position was 32a3438... fff
586 586 HEAD is now at da5f5b1... g
587 587 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
588 588 $ hg id -n
589 589 1
590 590 $ cd s
591 591 $ git rev-parse HEAD
592 592 da5f5b1d8ffcf62fb8327bcd3c89a4367a6018e7
593 593 $ cd ..
594 594
595 595 Test forgetting files, not implemented in git subrepo, used to
596 596 traceback
597 597 #if no-windows
598 598 $ hg forget 'notafile*'
599 599 notafile*: No such file or directory
600 600 [1]
601 601 #else
602 602 $ hg forget 'notafile'
603 603 notafile: * (glob)
604 604 [1]
605 605 #endif
606 606
607 607 $ cd ..
608 608
609 609 Test sanitizing ".hg/hgrc" in subrepo
610 610
611 611 $ cd t
612 612 $ hg tip -q
613 613 7:af6d2edbb0d3
614 614 $ hg update -q -C af6d2edbb0d3
615 615 $ cd s
616 616 $ git checkout -q -b sanitize-test
617 617 $ mkdir .hg
618 618 $ echo '.hg/hgrc in git repo' > .hg/hgrc
619 619 $ mkdir -p sub/.hg
620 620 $ echo 'sub/.hg/hgrc in git repo' > sub/.hg/hgrc
621 621 $ git add .hg sub
622 622 $ git commit -qm 'add .hg/hgrc to be sanitized at hg update'
623 623 $ git push -q origin sanitize-test
624 624 $ cd ..
625 625 $ grep ' s$' .hgsubstate
626 626 32a343883b74769118bb1d3b4b1fbf9156f4dddc s
627 627 $ hg commit -qm 'commit with git revision including .hg/hgrc'
628 628 $ hg parents -q
629 629 8:3473d20bddcf
630 630 $ grep ' s$' .hgsubstate
631 631 c4069473b459cf27fd4d7c2f50c4346b4e936599 s
632 632 $ cd ..
633 633
634 634 $ hg -R tc pull -q
635 635 $ hg -R tc update -q -C 3473d20bddcf 2>&1 | sort
636 636 warning: removing potentially hostile 'hgrc' in '$TESTTMP/tc/s/.hg' (glob)
637 637 warning: removing potentially hostile 'hgrc' in '$TESTTMP/tc/s/sub/.hg' (glob)
638 638 $ cd tc
639 639 $ hg parents -q
640 640 8:3473d20bddcf
641 641 $ grep ' s$' .hgsubstate
642 642 c4069473b459cf27fd4d7c2f50c4346b4e936599 s
643 643 $ test -f s/.hg/hgrc
644 644 [1]
645 645 $ test -f s/sub/.hg/hgrc
646 646 [1]
647 647 $ cd ..
648 648
649 649 additional test for "git merge --ff" route:
650 650
651 651 $ cd t
652 652 $ hg tip -q
653 653 8:3473d20bddcf
654 654 $ hg update -q -C af6d2edbb0d3
655 655 $ cd s
656 656 $ git checkout -q testing
657 657 $ mkdir .hg
658 658 $ echo '.hg/hgrc in git repo' > .hg/hgrc
659 659 $ mkdir -p sub/.hg
660 660 $ echo 'sub/.hg/hgrc in git repo' > sub/.hg/hgrc
661 661 $ git add .hg sub
662 662 $ git commit -qm 'add .hg/hgrc to be sanitized at hg update (git merge --ff)'
663 663 $ git push -q origin testing
664 664 $ cd ..
665 665 $ grep ' s$' .hgsubstate
666 666 32a343883b74769118bb1d3b4b1fbf9156f4dddc s
667 667 $ hg commit -qm 'commit with git revision including .hg/hgrc'
668 668 $ hg parents -q
669 669 9:ed23f7fe024e
670 670 $ grep ' s$' .hgsubstate
671 671 f262643c1077219fbd3858d54e78ef050ef84fbf s
672 672 $ cd ..
673 673
674 674 $ cd tc
675 675 $ hg update -q -C af6d2edbb0d3
676 676 $ test -f s/.hg/hgrc
677 677 [1]
678 678 $ test -f s/sub/.hg/hgrc
679 679 [1]
680 680 $ cd ..
681 681 $ hg -R tc pull -q
682 682 $ hg -R tc update -q -C ed23f7fe024e 2>&1 | sort
683 683 warning: removing potentially hostile 'hgrc' in '$TESTTMP/tc/s/.hg' (glob)
684 684 warning: removing potentially hostile 'hgrc' in '$TESTTMP/tc/s/sub/.hg' (glob)
685 685 $ cd tc
686 686 $ hg parents -q
687 687 9:ed23f7fe024e
688 688 $ grep ' s$' .hgsubstate
689 689 f262643c1077219fbd3858d54e78ef050ef84fbf s
690 690 $ test -f s/.hg/hgrc
691 691 [1]
692 692 $ test -f s/sub/.hg/hgrc
693 693 [1]
694 694
695 695 Test that sanitizing is omitted in meta data area:
696 696
697 697 $ mkdir s/.git/.hg
698 698 $ echo '.hg/hgrc in git metadata area' > s/.git/.hg/hgrc
699 699 $ hg update -q -C af6d2edbb0d3
700 700 checking out detached HEAD in subrepo s
701 701 check out a git branch if you intend to make changes
702 702
703 703 check differences made by most recent change
704 704 $ cd s
705 705 $ cat > foobar << EOF
706 706 > woopwoop
707 707 >
708 708 > foo
709 709 > bar
710 710 > EOF
711 711 $ git add foobar
712 712 $ cd ..
713 713
714 714 $ hg diff --subrepos
715 715 diff --git a/s/foobar b/s/foobar
716 716 new file mode 100644
717 717 index 0000000..8a5a5e2
718 718 --- /dev/null
719 719 +++ b/s/foobar
720 720 @@ -0,0 +1,4 @@
721 721 +woopwoop
722 722 +
723 723 +foo
724 724 +bar
725 725
726 726 $ hg commit --subrepos -m "Added foobar"
727 727 committing subrepository s
728 728 created new head
729 729
730 730 $ hg diff -c . --subrepos --nodates
731 731 diff -r af6d2edbb0d3 -r 255ee8cf690e .hgsubstate
732 732 --- a/.hgsubstate
733 733 +++ b/.hgsubstate
734 734 @@ -1,1 +1,1 @@
735 735 -32a343883b74769118bb1d3b4b1fbf9156f4dddc s
736 736 +fd4dbf828a5b2fcd36b2bcf21ea773820970d129 s
737 737 diff --git a/s/foobar b/s/foobar
738 738 new file mode 100644
739 739 index 0000000..8a5a5e2
740 740 --- /dev/null
741 741 +++ b/s/foobar
742 742 @@ -0,0 +1,4 @@
743 743 +woopwoop
744 744 +
745 745 +foo
746 746 +bar
747 747
748 748 check output when only diffing the subrepository
749 749 $ hg diff -c . --subrepos s
750 750 diff --git a/s/foobar b/s/foobar
751 751 new file mode 100644
752 752 index 0000000..8a5a5e2
753 753 --- /dev/null
754 754 +++ b/s/foobar
755 755 @@ -0,0 +1,4 @@
756 756 +woopwoop
757 757 +
758 758 +foo
759 759 +bar
760 760
761 761 check output when diffing something else
762 762 $ hg diff -c . --subrepos .hgsubstate --nodates
763 763 diff -r af6d2edbb0d3 -r 255ee8cf690e .hgsubstate
764 764 --- a/.hgsubstate
765 765 +++ b/.hgsubstate
766 766 @@ -1,1 +1,1 @@
767 767 -32a343883b74769118bb1d3b4b1fbf9156f4dddc s
768 768 +fd4dbf828a5b2fcd36b2bcf21ea773820970d129 s
769 769
770 770 add new changes, including whitespace
771 771 $ cd s
772 772 $ cat > foobar << EOF
773 773 > woop woop
774 774 >
775 775 > foo
776 776 > bar
777 777 > EOF
778 778 $ echo foo > barfoo
779 779 $ git add barfoo
780 780 $ cd ..
781 781
782 782 $ hg diff --subrepos --ignore-all-space
783 783 diff --git a/s/barfoo b/s/barfoo
784 784 new file mode 100644
785 785 index 0000000..257cc56
786 786 --- /dev/null
787 787 +++ b/s/barfoo
788 788 @@ -0,0 +1 @@
789 789 +foo
790 790 $ hg diff --subrepos s/foobar
791 791 diff --git a/s/foobar b/s/foobar
792 792 index 8a5a5e2..bd5812a 100644
793 793 --- a/s/foobar
794 794 +++ b/s/foobar
795 795 @@ -1,4 +1,4 @@
796 796 -woopwoop
797 797 +woop woop
798 798
799 799 foo
800 800 bar
801 801
802 802 execute a diffstat
803 803 the output contains a regex, because git 1.7.10 and 1.7.11
804 804 change the amount of whitespace
805 805 $ hg diff --subrepos --stat
806 806 \s*barfoo |\s*1 + (re)
807 807 \s*foobar |\s*2 +- (re)
808 808 2 files changed, 2 insertions\(\+\), 1 deletions?\(-\) (re)
809 809
810 810 adding an include should ignore the other elements
811 811 $ hg diff --subrepos -I s/foobar
812 812 diff --git a/s/foobar b/s/foobar
813 813 index 8a5a5e2..bd5812a 100644
814 814 --- a/s/foobar
815 815 +++ b/s/foobar
816 816 @@ -1,4 +1,4 @@
817 817 -woopwoop
818 818 +woop woop
819 819
820 820 foo
821 821 bar
822 822
823 823 adding an exclude should ignore this element
824 824 $ hg diff --subrepos -X s/foobar
825 825 diff --git a/s/barfoo b/s/barfoo
826 826 new file mode 100644
827 827 index 0000000..257cc56
828 828 --- /dev/null
829 829 +++ b/s/barfoo
830 830 @@ -0,0 +1 @@
831 831 +foo
832 832
833 833 moving a file should show a removal and an add
834 834 $ hg revert --all
835 835 reverting subrepo ../gitroot
836 836 $ cd s
837 837 $ git mv foobar woop
838 838 $ cd ..
839 839 $ hg diff --subrepos
840 840 diff --git a/s/foobar b/s/foobar
841 841 deleted file mode 100644
842 842 index 8a5a5e2..0000000
843 843 --- a/s/foobar
844 844 +++ /dev/null
845 845 @@ -1,4 +0,0 @@
846 846 -woopwoop
847 847 -
848 848 -foo
849 849 -bar
850 850 diff --git a/s/woop b/s/woop
851 851 new file mode 100644
852 852 index 0000000..8a5a5e2
853 853 --- /dev/null
854 854 +++ b/s/woop
855 855 @@ -0,0 +1,4 @@
856 856 +woopwoop
857 857 +
858 858 +foo
859 859 +bar
860 860 $ rm s/woop
861 861
862 862 revert the subrepository
863 863 $ hg revert --all
864 864 reverting subrepo ../gitroot
865 865
866 866 $ hg status --subrepos
867 867 ? s/barfoo
868 868 ? s/foobar.orig
869 869
870 870 $ mv s/foobar.orig s/foobar
871 871
872 872 $ hg revert --no-backup s
873 873 reverting subrepo ../gitroot
874 874
875 875 $ hg status --subrepos
876 876 ? s/barfoo
877 877
878 878 revert moves orig files to the right place
879 879 $ echo 'bloop' > s/foobar
880 880 $ hg revert --all --verbose --config 'ui.origbackuppath=.hg/origbackups'
881 881 reverting subrepo ../gitroot
882 882 creating directory: $TESTTMP/tc/.hg/origbackups (glob)
883 883 saving current version of foobar as $TESTTMP/tc/.hg/origbackups/foobar.orig (glob)
884 884 $ ls .hg/origbackups
885 885 foobar.orig
886 886 $ rm -rf .hg/origbackups
887 887
888 888 show file at specific revision
889 889 $ cat > s/foobar << EOF
890 890 > woop woop
891 891 > fooo bar
892 892 > EOF
893 893 $ hg commit --subrepos -m "updated foobar"
894 894 committing subrepository s
895 895 $ cat > s/foobar << EOF
896 896 > current foobar
897 897 > (should not be visible using hg cat)
898 898 > EOF
899 899
900 900 $ hg cat -r . s/foobar
901 901 woop woop
902 902 fooo bar (no-eol)
903 903 $ hg cat -r "parents(.)" s/foobar > catparents
904 904
905 905 $ mkdir -p tmp/s
906 906
907 907 $ hg cat -r "parents(.)" --output tmp/%% s/foobar
908 908 $ diff tmp/% catparents
909 909
910 910 $ hg cat -r "parents(.)" --output tmp/%s s/foobar
911 911 $ diff tmp/foobar catparents
912 912
913 913 $ hg cat -r "parents(.)" --output tmp/%d/otherfoobar s/foobar
914 914 $ diff tmp/s/otherfoobar catparents
915 915
916 916 $ hg cat -r "parents(.)" --output tmp/%p s/foobar
917 917 $ diff tmp/s/foobar catparents
918 918
919 919 $ hg cat -r "parents(.)" --output tmp/%H s/foobar
920 920 $ diff tmp/255ee8cf690ec86e99b1e80147ea93ece117cd9d catparents
921 921
922 922 $ hg cat -r "parents(.)" --output tmp/%R s/foobar
923 923 $ diff tmp/10 catparents
924 924
925 925 $ hg cat -r "parents(.)" --output tmp/%h s/foobar
926 926 $ diff tmp/255ee8cf690e catparents
927 927
928 928 $ rm tmp/10
929 929 $ hg cat -r "parents(.)" --output tmp/%r s/foobar
930 930 $ diff tmp/10 catparents
931 931
932 932 $ mkdir tmp/tc
933 933 $ hg cat -r "parents(.)" --output tmp/%b/foobar s/foobar
934 934 $ diff tmp/tc/foobar catparents
935 935
936 936 cleanup
937 937 $ rm -r tmp
938 938 $ rm catparents
939 939
940 940 add git files, using either files or patterns
941 941 $ echo "hsss! hsssssssh!" > s/snake.python
942 942 $ echo "ccc" > s/c.c
943 943 $ echo "cpp" > s/cpp.cpp
944 944
945 945 $ hg add s/snake.python s/c.c s/cpp.cpp
946 946 $ hg st --subrepos s
947 947 M s/foobar
948 948 A s/c.c
949 949 A s/cpp.cpp
950 950 A s/snake.python
951 951 ? s/barfoo
952 952 $ hg revert s
953 953 reverting subrepo ../gitroot
954 954
955 955 $ hg add --subrepos "glob:**.python"
956 956 adding s/snake.python (glob)
957 957 $ hg st --subrepos s
958 958 A s/snake.python
959 959 ? s/barfoo
960 960 ? s/c.c
961 961 ? s/cpp.cpp
962 962 ? s/foobar.orig
963 963 $ hg revert s
964 964 reverting subrepo ../gitroot
965 965
966 966 $ hg add --subrepos s
967 967 adding s/barfoo (glob)
968 968 adding s/c.c (glob)
969 969 adding s/cpp.cpp (glob)
970 970 adding s/foobar.orig (glob)
971 971 adding s/snake.python (glob)
972 972 $ hg st --subrepos s
973 973 A s/barfoo
974 974 A s/c.c
975 975 A s/cpp.cpp
976 976 A s/foobar.orig
977 977 A s/snake.python
978 978 $ hg revert s
979 979 reverting subrepo ../gitroot
980 980 make sure everything is reverted correctly
981 981 $ hg st --subrepos s
982 982 ? s/barfoo
983 983 ? s/c.c
984 984 ? s/cpp.cpp
985 985 ? s/foobar.orig
986 986 ? s/snake.python
987 987
988 988 $ hg add --subrepos --exclude "path:s/c.c"
989 989 adding s/barfoo (glob)
990 990 adding s/cpp.cpp (glob)
991 991 adding s/foobar.orig (glob)
992 992 adding s/snake.python (glob)
993 993 $ hg st --subrepos s
994 994 A s/barfoo
995 995 A s/cpp.cpp
996 996 A s/foobar.orig
997 997 A s/snake.python
998 998 ? s/c.c
999 999 $ hg revert --all -q
1000 1000
1001 1001 .hgignore should not have influence in subrepos
1002 1002 $ cat > .hgignore << EOF
1003 1003 > syntax: glob
1004 1004 > *.python
1005 1005 > EOF
1006 1006 $ hg add .hgignore
1007 1007 $ hg add --subrepos "glob:**.python" s/barfoo
1008 1008 adding s/snake.python (glob)
1009 1009 $ hg st --subrepos s
1010 1010 A s/barfoo
1011 1011 A s/snake.python
1012 1012 ? s/c.c
1013 1013 ? s/cpp.cpp
1014 1014 ? s/foobar.orig
1015 1015 $ hg revert --all -q
1016 1016
1017 1017 .gitignore should have influence,
1018 1018 except for explicitly added files (no patterns)
1019 1019 $ cat > s/.gitignore << EOF
1020 1020 > *.python
1021 1021 > EOF
1022 1022 $ hg add s/.gitignore
1023 1023 $ hg st --subrepos s
1024 1024 A s/.gitignore
1025 1025 ? s/barfoo
1026 1026 ? s/c.c
1027 1027 ? s/cpp.cpp
1028 1028 ? s/foobar.orig
1029 1029 $ hg st --subrepos s --all
1030 1030 A s/.gitignore
1031 1031 ? s/barfoo
1032 1032 ? s/c.c
1033 1033 ? s/cpp.cpp
1034 1034 ? s/foobar.orig
1035 1035 I s/snake.python
1036 1036 C s/f
1037 1037 C s/foobar
1038 1038 C s/g
1039 1039 $ hg add --subrepos "glob:**.python"
1040 1040 $ hg st --subrepos s
1041 1041 A s/.gitignore
1042 1042 ? s/barfoo
1043 1043 ? s/c.c
1044 1044 ? s/cpp.cpp
1045 1045 ? s/foobar.orig
1046 1046 $ hg add --subrepos s/snake.python
1047 1047 $ hg st --subrepos s
1048 1048 A s/.gitignore
1049 1049 A s/snake.python
1050 1050 ? s/barfoo
1051 1051 ? s/c.c
1052 1052 ? s/cpp.cpp
1053 1053 ? s/foobar.orig
1054 1054
1055 1055 correctly do a dry run
1056 1056 $ hg add --subrepos s --dry-run
1057 1057 adding s/barfoo (glob)
1058 1058 adding s/c.c (glob)
1059 1059 adding s/cpp.cpp (glob)
1060 1060 adding s/foobar.orig (glob)
1061 1061 $ hg st --subrepos s
1062 1062 A s/.gitignore
1063 1063 A s/snake.python
1064 1064 ? s/barfoo
1065 1065 ? s/c.c
1066 1066 ? s/cpp.cpp
1067 1067 ? s/foobar.orig
1068 1068
1069 1069 error given when adding an already tracked file
1070 1070 $ hg add s/.gitignore
1071 1071 s/.gitignore already tracked!
1072 1072 [1]
1073 1073 $ hg add s/g
1074 1074 s/g already tracked!
1075 1075 [1]
1076 1076
1077 1077 removed files can be re-added
1078 1078 removing files using 'rm' or 'git rm' has the same effect,
1079 1079 since we ignore the staging area
1080 1080 $ hg ci --subrepos -m 'snake'
1081 1081 committing subrepository s
1082 1082 $ cd s
1083 1083 $ rm snake.python
1084 1084 (remove leftover .hg so Mercurial doesn't look for a root here)
1085 1085 $ rm -rf .hg
1086 1086 $ hg status --subrepos --all .
1087 1087 R snake.python
1088 1088 ? barfoo
1089 1089 ? c.c
1090 1090 ? cpp.cpp
1091 1091 ? foobar.orig
1092 1092 C .gitignore
1093 1093 C f
1094 1094 C foobar
1095 1095 C g
1096 1096 $ git rm snake.python
1097 1097 rm 'snake.python'
1098 1098 $ hg status --subrepos --all .
1099 1099 R snake.python
1100 1100 ? barfoo
1101 1101 ? c.c
1102 1102 ? cpp.cpp
1103 1103 ? foobar.orig
1104 1104 C .gitignore
1105 1105 C f
1106 1106 C foobar
1107 1107 C g
1108 1108 $ touch snake.python
1109 1109 $ cd ..
1110 1110 $ hg add s/snake.python
1111 1111 $ hg status -S
1112 1112 M s/snake.python
1113 1113 ? .hgignore
1114 1114 ? s/barfoo
1115 1115 ? s/c.c
1116 1116 ? s/cpp.cpp
1117 1117 ? s/foobar.orig
1118 1118 $ hg revert --all -q
1119 1119
1120 1120 make sure we show changed files, rather than changed subtrees
1121 1121 $ mkdir s/foo
1122 1122 $ touch s/foo/bwuh
1123 1123 $ hg add s/foo/bwuh
1124 1124 $ hg commit -S -m "add bwuh"
1125 1125 committing subrepository s
1126 1126 $ hg status -S --change .
1127 1127 M .hgsubstate
1128 1128 A s/foo/bwuh
1129 1129 ? s/barfoo
1130 1130 ? s/c.c
1131 1131 ? s/cpp.cpp
1132 1132 ? s/foobar.orig
1133 1133 ? s/snake.python.orig
1134 1134
1135 test for Git CVE-2016-3068
1136 $ hg init malicious-subrepository
1137 $ cd malicious-subrepository
1138 $ echo "s = [git]ext::sh -c echo% pwned% >&2" > .hgsub
1139 $ git init s
1140 Initialized empty Git repository in $TESTTMP/tc/malicious-subrepository/s/.git/
1141 $ cd s
1142 $ git commit --allow-empty -m 'empty'
1143 [master (root-commit) 153f934] empty
1135 1144 $ cd ..
1145 $ hg add .hgsub
1146 $ hg commit -m "add subrepo"
1147 $ cd ..
1148 $ env -u GIT_ALLOW_PROTOCOL hg clone malicious-subrepository malicious-subrepository-protected
1149 Cloning into '$TESTTMP/tc/malicious-subrepository-protected/s'...
1150 fatal: transport 'ext' not allowed
1151 updating to branch default
1152 cloning subrepo s from ext::sh -c echo% pwned% >&2
1153 abort: git clone error 128 in s (in subrepo s)
1154 [255]
1155
1156 whitelisting of ext should be respected (that's the git submodule behaviour)
1157 $ env GIT_ALLOW_PROTOCOL=ext hg clone malicious-subrepository malicious-subrepository-clone-allowed
1158 Cloning into '$TESTTMP/tc/malicious-subrepository-clone-allowed/s'...
1159 pwned
1160 fatal: Could not read from remote repository.
1161
1162 Please make sure you have the correct access rights
1163 and the repository exists.
1164 updating to branch default
1165 cloning subrepo s from ext::sh -c echo% pwned% >&2
1166 abort: git clone error 128 in s (in subrepo s)
1167 [255]
General Comments 0
You need to be logged in to leave comments. Login now