Show More
@@ -139,13 +139,13 b' def do_relink(src, dst, files, ui):' | |||||
139 | continue |
|
139 | continue | |
140 | try: |
|
140 | try: | |
141 | relinkfile(source, tgt) |
|
141 | relinkfile(source, tgt) | |
142 | ui.progress(_('relink'), pos, f, _(' files'), total) |
|
142 | ui.progress(_('relinking'), pos, f, _(' files'), total) | |
143 | relinked += 1 |
|
143 | relinked += 1 | |
144 | savedbytes += sz |
|
144 | savedbytes += sz | |
145 | except OSError, inst: |
|
145 | except OSError, inst: | |
146 | ui.warn('%s: %s\n' % (tgt, str(inst))) |
|
146 | ui.warn('%s: %s\n' % (tgt, str(inst))) | |
147 |
|
147 | |||
148 | ui.progress(_('relink'), None, f, _(' files'), total) |
|
148 | ui.progress(_('relinking'), None, f, _(' files'), total) | |
149 |
|
149 | |||
150 | ui.status(_('relinked %d files (%d bytes reclaimed)\n') % |
|
150 | ui.status(_('relinked %d files (%d bytes reclaimed)\n') % | |
151 | (relinked, savedbytes)) |
|
151 | (relinked, savedbytes)) |
@@ -1826,9 +1826,9 b' class localrepository(repo.repository):' | |||||
1826 | cnt = 0 |
|
1826 | cnt = 0 | |
1827 | for chnk in group: |
|
1827 | for chnk in group: | |
1828 | yield chnk |
|
1828 | yield chnk | |
1829 |
self.ui.progress(_('bundl |
|
1829 | self.ui.progress(_('bundling changes'), cnt, unit=_('chunks')) | |
1830 | cnt += 1 |
|
1830 | cnt += 1 | |
1831 |
self.ui.progress(_('bundl |
|
1831 | self.ui.progress(_('bundling changes'), None, unit=_('chunks')) | |
1832 |
|
1832 | |||
1833 |
|
1833 | |||
1834 | # Figure out which manifest nodes (of the ones we think might be |
|
1834 | # Figure out which manifest nodes (of the ones we think might be | |
@@ -1854,9 +1854,9 b' class localrepository(repo.repository):' | |||||
1854 | cnt = 0 |
|
1854 | cnt = 0 | |
1855 | for chnk in group: |
|
1855 | for chnk in group: | |
1856 | yield chnk |
|
1856 | yield chnk | |
1857 |
self.ui.progress(_('bundl |
|
1857 | self.ui.progress(_('bundling manifests'), cnt, unit=_('chunks')) | |
1858 | cnt += 1 |
|
1858 | cnt += 1 | |
1859 |
self.ui.progress(_('bundl |
|
1859 | self.ui.progress(_('bundling manifests'), None, unit=_('chunks')) | |
1860 |
|
1860 | |||
1861 | # These are no longer needed, dereference and toss the memory for |
|
1861 | # These are no longer needed, dereference and toss the memory for | |
1862 | # them. |
|
1862 | # them. | |
@@ -1897,7 +1897,7 b' class localrepository(repo.repository):' | |||||
1897 | lookup_filenode_link_func(fname)) |
|
1897 | lookup_filenode_link_func(fname)) | |
1898 | for chnk in group: |
|
1898 | for chnk in group: | |
1899 | self.ui.progress( |
|
1899 | self.ui.progress( | |
1900 |
_('bundl |
|
1900 | _('bundling files'), cnt, item=fname, unit=_('chunks')) | |
1901 | cnt += 1 |
|
1901 | cnt += 1 | |
1902 | yield chnk |
|
1902 | yield chnk | |
1903 | if fname in msng_filenode_set: |
|
1903 | if fname in msng_filenode_set: | |
@@ -1905,7 +1905,7 b' class localrepository(repo.repository):' | |||||
1905 | del msng_filenode_set[fname] |
|
1905 | del msng_filenode_set[fname] | |
1906 | # Signal that no more groups are left. |
|
1906 | # Signal that no more groups are left. | |
1907 | yield changegroup.closechunk() |
|
1907 | yield changegroup.closechunk() | |
1908 |
self.ui.progress(_('bundl |
|
1908 | self.ui.progress(_('bundling files'), None, unit=_('chunks')) | |
1909 |
|
1909 | |||
1910 | if msng_cl_lst: |
|
1910 | if msng_cl_lst: | |
1911 | self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source) |
|
1911 | self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source) | |
@@ -1954,19 +1954,19 b' class localrepository(repo.repository):' | |||||
1954 |
|
1954 | |||
1955 | cnt = 0 |
|
1955 | cnt = 0 | |
1956 | for chnk in cl.group(nodes, identity, collect): |
|
1956 | for chnk in cl.group(nodes, identity, collect): | |
1957 |
self.ui.progress(_('bundl |
|
1957 | self.ui.progress(_('bundling changes'), cnt, unit=_('chunks')) | |
1958 | cnt += 1 |
|
1958 | cnt += 1 | |
1959 | yield chnk |
|
1959 | yield chnk | |
1960 |
self.ui.progress(_('bundl |
|
1960 | self.ui.progress(_('bundling changes'), None, unit=_('chunks')) | |
1961 |
|
1961 | |||
1962 | mnfst = self.manifest |
|
1962 | mnfst = self.manifest | |
1963 | nodeiter = gennodelst(mnfst) |
|
1963 | nodeiter = gennodelst(mnfst) | |
1964 | cnt = 0 |
|
1964 | cnt = 0 | |
1965 | for chnk in mnfst.group(nodeiter, lookuprevlink_func(mnfst)): |
|
1965 | for chnk in mnfst.group(nodeiter, lookuprevlink_func(mnfst)): | |
1966 |
self.ui.progress(_('bundl |
|
1966 | self.ui.progress(_('bundling manifests'), cnt, unit=_('chunks')) | |
1967 | cnt += 1 |
|
1967 | cnt += 1 | |
1968 | yield chnk |
|
1968 | yield chnk | |
1969 |
self.ui.progress(_('bundl |
|
1969 | self.ui.progress(_('bundling manifests'), None, unit=_('chunks')) | |
1970 |
|
1970 | |||
1971 | cnt = 0 |
|
1971 | cnt = 0 | |
1972 | for fname in sorted(changedfiles): |
|
1972 | for fname in sorted(changedfiles): | |
@@ -1981,10 +1981,10 b' class localrepository(repo.repository):' | |||||
1981 | lookup = lookuprevlink_func(filerevlog) |
|
1981 | lookup = lookuprevlink_func(filerevlog) | |
1982 | for chnk in filerevlog.group(nodeiter, lookup): |
|
1982 | for chnk in filerevlog.group(nodeiter, lookup): | |
1983 | self.ui.progress( |
|
1983 | self.ui.progress( | |
1984 |
_('bundl |
|
1984 | _('bundling files'), cnt, item=fname, unit=_('chunks')) | |
1985 | cnt += 1 |
|
1985 | cnt += 1 | |
1986 | yield chnk |
|
1986 | yield chnk | |
1987 |
self.ui.progress(_('bundl |
|
1987 | self.ui.progress(_('bundling files'), None, unit=_('chunks')) | |
1988 |
|
1988 | |||
1989 | yield changegroup.closechunk() |
|
1989 | yield changegroup.closechunk() | |
1990 |
|
1990 |
@@ -193,8 +193,11 b' class hgsubrepo(object):' | |||||
193 | fp.write('%s = %s\n' % (key, value)) |
|
193 | fp.write('%s = %s\n' % (key, value)) | |
194 | self._repo.ui.setconfig('paths', key, value) |
|
194 | self._repo.ui.setconfig('paths', key, value) | |
195 |
|
195 | |||
196 |
defpath = |
|
196 | defpath = _abssource(self._repo) | |
|
197 | defpushpath = _abssource(self._repo, True) | |||
197 | addpathconfig('default', defpath) |
|
198 | addpathconfig('default', defpath) | |
|
199 | if defpath != defpushpath: | |||
|
200 | addpathconfig('default-push', defpushpath) | |||
198 | fp.close() |
|
201 | fp.close() | |
199 |
|
202 | |||
200 | def dirty(self): |
|
203 | def dirty(self): |
@@ -122,7 +122,7 b' def _verify(repo):' | |||||
122 | checklog(cl, "changelog", 0) |
|
122 | checklog(cl, "changelog", 0) | |
123 | total = len(repo) |
|
123 | total = len(repo) | |
124 | for i in repo: |
|
124 | for i in repo: | |
125 |
ui.progress(_('ch |
|
125 | ui.progress(_('checking'), i, total=total) | |
126 | n = cl.node(i) |
|
126 | n = cl.node(i) | |
127 | checkentry(cl, i, n, seen, [i], "changelog") |
|
127 | checkentry(cl, i, n, seen, [i], "changelog") | |
128 |
|
128 | |||
@@ -133,14 +133,14 b' def _verify(repo):' | |||||
133 | filelinkrevs.setdefault(f, []).append(i) |
|
133 | filelinkrevs.setdefault(f, []).append(i) | |
134 | except Exception, inst: |
|
134 | except Exception, inst: | |
135 | exc(i, _("unpacking changeset %s") % short(n), inst) |
|
135 | exc(i, _("unpacking changeset %s") % short(n), inst) | |
136 |
ui.progress(_('ch |
|
136 | ui.progress(_('checking'), None) | |
137 |
|
137 | |||
138 | ui.status(_("checking manifests\n")) |
|
138 | ui.status(_("checking manifests\n")) | |
139 | seen = {} |
|
139 | seen = {} | |
140 | checklog(mf, "manifest", 0) |
|
140 | checklog(mf, "manifest", 0) | |
141 | total = len(mf) |
|
141 | total = len(mf) | |
142 | for i in mf: |
|
142 | for i in mf: | |
143 |
ui.progress(_(' |
|
143 | ui.progress(_('checking'), i, total=total) | |
144 | n = mf.node(i) |
|
144 | n = mf.node(i) | |
145 | lr = checkentry(mf, i, n, seen, mflinkrevs.get(n, []), "manifest") |
|
145 | lr = checkentry(mf, i, n, seen, mflinkrevs.get(n, []), "manifest") | |
146 | if n in mflinkrevs: |
|
146 | if n in mflinkrevs: | |
@@ -156,7 +156,7 b' def _verify(repo):' | |||||
156 | filenodes.setdefault(f, {}).setdefault(fn, lr) |
|
156 | filenodes.setdefault(f, {}).setdefault(fn, lr) | |
157 | except Exception, inst: |
|
157 | except Exception, inst: | |
158 | exc(lr, _("reading manifest delta %s") % short(n), inst) |
|
158 | exc(lr, _("reading manifest delta %s") % short(n), inst) | |
159 |
ui.progress(_(' |
|
159 | ui.progress(_('checking'), None) | |
160 |
|
160 | |||
161 | ui.status(_("crosschecking files in changesets and manifests\n")) |
|
161 | ui.status(_("crosschecking files in changesets and manifests\n")) | |
162 |
|
162 | |||
@@ -166,13 +166,13 b' def _verify(repo):' | |||||
166 | for c, m in sorted([(c, m) for m in mflinkrevs |
|
166 | for c, m in sorted([(c, m) for m in mflinkrevs | |
167 | for c in mflinkrevs[m]]): |
|
167 | for c in mflinkrevs[m]]): | |
168 | count += 1 |
|
168 | count += 1 | |
169 | ui.progress(_('crosscheck'), count, total=total) |
|
169 | ui.progress(_('crosschecking'), count, total=total) | |
170 | err(c, _("changeset refers to unknown manifest %s") % short(m)) |
|
170 | err(c, _("changeset refers to unknown manifest %s") % short(m)) | |
171 | mflinkrevs = None # del is bad here due to scope issues |
|
171 | mflinkrevs = None # del is bad here due to scope issues | |
172 |
|
172 | |||
173 | for f in sorted(filelinkrevs): |
|
173 | for f in sorted(filelinkrevs): | |
174 | count += 1 |
|
174 | count += 1 | |
175 | ui.progress(_('crosscheck'), count, total=total) |
|
175 | ui.progress(_('crosschecking'), count, total=total) | |
176 | if f not in filenodes: |
|
176 | if f not in filenodes: | |
177 | lr = filelinkrevs[f][0] |
|
177 | lr = filelinkrevs[f][0] | |
178 | err(lr, _("in changeset but not in manifest"), f) |
|
178 | err(lr, _("in changeset but not in manifest"), f) | |
@@ -180,7 +180,7 b' def _verify(repo):' | |||||
180 | if havecl: |
|
180 | if havecl: | |
181 | for f in sorted(filenodes): |
|
181 | for f in sorted(filenodes): | |
182 | count += 1 |
|
182 | count += 1 | |
183 | ui.progress(_('crosscheck'), count, total=total) |
|
183 | ui.progress(_('crosschecking'), count, total=total) | |
184 | if f not in filelinkrevs: |
|
184 | if f not in filelinkrevs: | |
185 | try: |
|
185 | try: | |
186 | fl = repo.file(f) |
|
186 | fl = repo.file(f) | |
@@ -189,7 +189,7 b' def _verify(repo):' | |||||
189 | lr = None |
|
189 | lr = None | |
190 | err(lr, _("in manifest but not in changeset"), f) |
|
190 | err(lr, _("in manifest but not in changeset"), f) | |
191 |
|
191 | |||
192 | ui.progress(_('crosscheck'), None) |
|
192 | ui.progress(_('crosschecking'), None) | |
193 |
|
193 | |||
194 | ui.status(_("checking files\n")) |
|
194 | ui.status(_("checking files\n")) | |
195 |
|
195 | |||
@@ -203,7 +203,7 b' def _verify(repo):' | |||||
203 | files = sorted(set(filenodes) | set(filelinkrevs)) |
|
203 | files = sorted(set(filenodes) | set(filelinkrevs)) | |
204 | total = len(files) |
|
204 | total = len(files) | |
205 | for i, f in enumerate(files): |
|
205 | for i, f in enumerate(files): | |
206 |
ui.progress(_(' |
|
206 | ui.progress(_('checking'), i, item=f, total=total) | |
207 | try: |
|
207 | try: | |
208 | linkrevs = filelinkrevs[f] |
|
208 | linkrevs = filelinkrevs[f] | |
209 | except KeyError: |
|
209 | except KeyError: | |
@@ -281,7 +281,7 b' def _verify(repo):' | |||||
281 | fns = [(lr, n) for n, lr in filenodes[f].iteritems()] |
|
281 | fns = [(lr, n) for n, lr in filenodes[f].iteritems()] | |
282 | for lr, node in sorted(fns): |
|
282 | for lr, node in sorted(fns): | |
283 | err(lr, _("%s in manifests not found") % short(node), f) |
|
283 | err(lr, _("%s in manifests not found") % short(node), f) | |
284 |
ui.progress(_(' |
|
284 | ui.progress(_('checking'), None) | |
285 |
|
285 | |||
286 | for f in storefiles: |
|
286 | for f in storefiles: | |
287 | warn(_("warning: orphan revlog '%s'") % f) |
|
287 | warn(_("warning: orphan revlog '%s'") % f) |
This diff has been collapsed as it changes many lines, (896 lines changed) Show them Hide them | |||||
@@ -20,38 +20,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
20 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
20 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
21 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
21 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
22 | adding changesets |
|
22 | adding changesets | |
23 |
bundl |
|
23 | bundling changes: 0 chunks | |
24 |
bundl |
|
24 | bundling changes: 1 chunks | |
25 |
bundl |
|
25 | bundling changes: 2 chunks | |
26 |
bundl |
|
26 | bundling changes: 3 chunks | |
27 |
bundl |
|
27 | bundling changes: 4 chunks | |
28 |
bundl |
|
28 | bundling changes: 5 chunks | |
29 |
bundl |
|
29 | bundling changes: 6 chunks | |
30 |
bundl |
|
30 | bundling changes: 7 chunks | |
31 |
bundl |
|
31 | bundling changes: 8 chunks | |
32 |
bundl |
|
32 | bundling changes: 9 chunks | |
33 |
bundl |
|
33 | bundling manifests: 0 chunks | |
34 |
bundl |
|
34 | bundling manifests: 1 chunks | |
35 |
bundl |
|
35 | bundling manifests: 2 chunks | |
36 |
bundl |
|
36 | bundling manifests: 3 chunks | |
37 |
bundl |
|
37 | bundling manifests: 4 chunks | |
38 |
bundl |
|
38 | bundling manifests: 5 chunks | |
39 |
bundl |
|
39 | bundling manifests: 6 chunks | |
40 |
bundl |
|
40 | bundling manifests: 7 chunks | |
41 |
bundl |
|
41 | bundling manifests: 8 chunks | |
42 |
bundl |
|
42 | bundling manifests: 9 chunks | |
43 |
bundl |
|
43 | bundling files: foo/Bar/file.txt 0 chunks | |
44 |
bundl |
|
44 | bundling files: foo/Bar/file.txt 1 chunks | |
45 |
bundl |
|
45 | bundling files: foo/Bar/file.txt 2 chunks | |
46 |
bundl |
|
46 | bundling files: foo/Bar/file.txt 3 chunks | |
47 |
bundl |
|
47 | bundling files: foo/file.txt 4 chunks | |
48 |
bundl |
|
48 | bundling files: foo/file.txt 5 chunks | |
49 |
bundl |
|
49 | bundling files: foo/file.txt 6 chunks | |
50 |
bundl |
|
50 | bundling files: foo/file.txt 7 chunks | |
51 |
bundl |
|
51 | bundling files: quux/file.py 8 chunks | |
52 |
bundl |
|
52 | bundling files: quux/file.py 9 chunks | |
53 |
bundl |
|
53 | bundling files: quux/file.py 10 chunks | |
54 |
bundl |
|
54 | bundling files: quux/file.py 11 chunks | |
55 | changesets: 1 chunks |
|
55 | changesets: 1 chunks | |
56 | add changeset ef1ea85a6374 |
|
56 | add changeset ef1ea85a6374 | |
57 | changesets: 2 chunks |
|
57 | changesets: 2 chunks | |
@@ -90,38 +90,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
90 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
90 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
91 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
91 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
92 | adding changesets |
|
92 | adding changesets | |
93 |
bundl |
|
93 | bundling changes: 0 chunks | |
94 |
bundl |
|
94 | bundling changes: 1 chunks | |
95 |
bundl |
|
95 | bundling changes: 2 chunks | |
96 |
bundl |
|
96 | bundling changes: 3 chunks | |
97 |
bundl |
|
97 | bundling changes: 4 chunks | |
98 |
bundl |
|
98 | bundling changes: 5 chunks | |
99 |
bundl |
|
99 | bundling changes: 6 chunks | |
100 |
bundl |
|
100 | bundling changes: 7 chunks | |
101 |
bundl |
|
101 | bundling changes: 8 chunks | |
102 |
bundl |
|
102 | bundling changes: 9 chunks | |
103 |
bundl |
|
103 | bundling manifests: 0 chunks | |
104 |
bundl |
|
104 | bundling manifests: 1 chunks | |
105 |
bundl |
|
105 | bundling manifests: 2 chunks | |
106 |
bundl |
|
106 | bundling manifests: 3 chunks | |
107 |
bundl |
|
107 | bundling manifests: 4 chunks | |
108 |
bundl |
|
108 | bundling manifests: 5 chunks | |
109 |
bundl |
|
109 | bundling manifests: 6 chunks | |
110 |
bundl |
|
110 | bundling manifests: 7 chunks | |
111 |
bundl |
|
111 | bundling manifests: 8 chunks | |
112 |
bundl |
|
112 | bundling manifests: 9 chunks | |
113 |
bundl |
|
113 | bundling files: foo/Bar/file.txt 0 chunks | |
114 |
bundl |
|
114 | bundling files: foo/Bar/file.txt 1 chunks | |
115 |
bundl |
|
115 | bundling files: foo/Bar/file.txt 2 chunks | |
116 |
bundl |
|
116 | bundling files: foo/Bar/file.txt 3 chunks | |
117 |
bundl |
|
117 | bundling files: foo/file.txt 4 chunks | |
118 |
bundl |
|
118 | bundling files: foo/file.txt 5 chunks | |
119 |
bundl |
|
119 | bundling files: foo/file.txt 6 chunks | |
120 |
bundl |
|
120 | bundling files: foo/file.txt 7 chunks | |
121 |
bundl |
|
121 | bundling files: quux/file.py 8 chunks | |
122 |
bundl |
|
122 | bundling files: quux/file.py 9 chunks | |
123 |
bundl |
|
123 | bundling files: quux/file.py 10 chunks | |
124 |
bundl |
|
124 | bundling files: quux/file.py 11 chunks | |
125 | changesets: 1 chunks |
|
125 | changesets: 1 chunks | |
126 | add changeset ef1ea85a6374 |
|
126 | add changeset ef1ea85a6374 | |
127 | changesets: 2 chunks |
|
127 | changesets: 2 chunks | |
@@ -164,38 +164,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
164 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
164 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
165 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
165 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
166 | adding changesets |
|
166 | adding changesets | |
167 |
bundl |
|
167 | bundling changes: 0 chunks | |
168 |
bundl |
|
168 | bundling changes: 1 chunks | |
169 |
bundl |
|
169 | bundling changes: 2 chunks | |
170 |
bundl |
|
170 | bundling changes: 3 chunks | |
171 |
bundl |
|
171 | bundling changes: 4 chunks | |
172 |
bundl |
|
172 | bundling changes: 5 chunks | |
173 |
bundl |
|
173 | bundling changes: 6 chunks | |
174 |
bundl |
|
174 | bundling changes: 7 chunks | |
175 |
bundl |
|
175 | bundling changes: 8 chunks | |
176 |
bundl |
|
176 | bundling changes: 9 chunks | |
177 |
bundl |
|
177 | bundling manifests: 0 chunks | |
178 |
bundl |
|
178 | bundling manifests: 1 chunks | |
179 |
bundl |
|
179 | bundling manifests: 2 chunks | |
180 |
bundl |
|
180 | bundling manifests: 3 chunks | |
181 |
bundl |
|
181 | bundling manifests: 4 chunks | |
182 |
bundl |
|
182 | bundling manifests: 5 chunks | |
183 |
bundl |
|
183 | bundling manifests: 6 chunks | |
184 |
bundl |
|
184 | bundling manifests: 7 chunks | |
185 |
bundl |
|
185 | bundling manifests: 8 chunks | |
186 |
bundl |
|
186 | bundling manifests: 9 chunks | |
187 |
bundl |
|
187 | bundling files: foo/Bar/file.txt 0 chunks | |
188 |
bundl |
|
188 | bundling files: foo/Bar/file.txt 1 chunks | |
189 |
bundl |
|
189 | bundling files: foo/Bar/file.txt 2 chunks | |
190 |
bundl |
|
190 | bundling files: foo/Bar/file.txt 3 chunks | |
191 |
bundl |
|
191 | bundling files: foo/file.txt 4 chunks | |
192 |
bundl |
|
192 | bundling files: foo/file.txt 5 chunks | |
193 |
bundl |
|
193 | bundling files: foo/file.txt 6 chunks | |
194 |
bundl |
|
194 | bundling files: foo/file.txt 7 chunks | |
195 |
bundl |
|
195 | bundling files: quux/file.py 8 chunks | |
196 |
bundl |
|
196 | bundling files: quux/file.py 9 chunks | |
197 |
bundl |
|
197 | bundling files: quux/file.py 10 chunks | |
198 |
bundl |
|
198 | bundling files: quux/file.py 11 chunks | |
199 | changesets: 1 chunks |
|
199 | changesets: 1 chunks | |
200 | add changeset ef1ea85a6374 |
|
200 | add changeset ef1ea85a6374 | |
201 | changesets: 2 chunks |
|
201 | changesets: 2 chunks | |
@@ -243,38 +243,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
243 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
243 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
244 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
244 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
245 | adding changesets |
|
245 | adding changesets | |
246 |
bundl |
|
246 | bundling changes: 0 chunks | |
247 |
bundl |
|
247 | bundling changes: 1 chunks | |
248 |
bundl |
|
248 | bundling changes: 2 chunks | |
249 |
bundl |
|
249 | bundling changes: 3 chunks | |
250 |
bundl |
|
250 | bundling changes: 4 chunks | |
251 |
bundl |
|
251 | bundling changes: 5 chunks | |
252 |
bundl |
|
252 | bundling changes: 6 chunks | |
253 |
bundl |
|
253 | bundling changes: 7 chunks | |
254 |
bundl |
|
254 | bundling changes: 8 chunks | |
255 |
bundl |
|
255 | bundling changes: 9 chunks | |
256 |
bundl |
|
256 | bundling manifests: 0 chunks | |
257 |
bundl |
|
257 | bundling manifests: 1 chunks | |
258 |
bundl |
|
258 | bundling manifests: 2 chunks | |
259 |
bundl |
|
259 | bundling manifests: 3 chunks | |
260 |
bundl |
|
260 | bundling manifests: 4 chunks | |
261 |
bundl |
|
261 | bundling manifests: 5 chunks | |
262 |
bundl |
|
262 | bundling manifests: 6 chunks | |
263 |
bundl |
|
263 | bundling manifests: 7 chunks | |
264 |
bundl |
|
264 | bundling manifests: 8 chunks | |
265 |
bundl |
|
265 | bundling manifests: 9 chunks | |
266 |
bundl |
|
266 | bundling files: foo/Bar/file.txt 0 chunks | |
267 |
bundl |
|
267 | bundling files: foo/Bar/file.txt 1 chunks | |
268 |
bundl |
|
268 | bundling files: foo/Bar/file.txt 2 chunks | |
269 |
bundl |
|
269 | bundling files: foo/Bar/file.txt 3 chunks | |
270 |
bundl |
|
270 | bundling files: foo/file.txt 4 chunks | |
271 |
bundl |
|
271 | bundling files: foo/file.txt 5 chunks | |
272 |
bundl |
|
272 | bundling files: foo/file.txt 6 chunks | |
273 |
bundl |
|
273 | bundling files: foo/file.txt 7 chunks | |
274 |
bundl |
|
274 | bundling files: quux/file.py 8 chunks | |
275 |
bundl |
|
275 | bundling files: quux/file.py 9 chunks | |
276 |
bundl |
|
276 | bundling files: quux/file.py 10 chunks | |
277 |
bundl |
|
277 | bundling files: quux/file.py 11 chunks | |
278 | changesets: 1 chunks |
|
278 | changesets: 1 chunks | |
279 | add changeset ef1ea85a6374 |
|
279 | add changeset ef1ea85a6374 | |
280 | changesets: 2 chunks |
|
280 | changesets: 2 chunks | |
@@ -323,38 +323,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
323 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
323 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
324 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
324 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
325 | adding changesets |
|
325 | adding changesets | |
326 |
bundl |
|
326 | bundling changes: 0 chunks | |
327 |
bundl |
|
327 | bundling changes: 1 chunks | |
328 |
bundl |
|
328 | bundling changes: 2 chunks | |
329 |
bundl |
|
329 | bundling changes: 3 chunks | |
330 |
bundl |
|
330 | bundling changes: 4 chunks | |
331 |
bundl |
|
331 | bundling changes: 5 chunks | |
332 |
bundl |
|
332 | bundling changes: 6 chunks | |
333 |
bundl |
|
333 | bundling changes: 7 chunks | |
334 |
bundl |
|
334 | bundling changes: 8 chunks | |
335 |
bundl |
|
335 | bundling changes: 9 chunks | |
336 |
bundl |
|
336 | bundling manifests: 0 chunks | |
337 |
bundl |
|
337 | bundling manifests: 1 chunks | |
338 |
bundl |
|
338 | bundling manifests: 2 chunks | |
339 |
bundl |
|
339 | bundling manifests: 3 chunks | |
340 |
bundl |
|
340 | bundling manifests: 4 chunks | |
341 |
bundl |
|
341 | bundling manifests: 5 chunks | |
342 |
bundl |
|
342 | bundling manifests: 6 chunks | |
343 |
bundl |
|
343 | bundling manifests: 7 chunks | |
344 |
bundl |
|
344 | bundling manifests: 8 chunks | |
345 |
bundl |
|
345 | bundling manifests: 9 chunks | |
346 |
bundl |
|
346 | bundling files: foo/Bar/file.txt 0 chunks | |
347 |
bundl |
|
347 | bundling files: foo/Bar/file.txt 1 chunks | |
348 |
bundl |
|
348 | bundling files: foo/Bar/file.txt 2 chunks | |
349 |
bundl |
|
349 | bundling files: foo/Bar/file.txt 3 chunks | |
350 |
bundl |
|
350 | bundling files: foo/file.txt 4 chunks | |
351 |
bundl |
|
351 | bundling files: foo/file.txt 5 chunks | |
352 |
bundl |
|
352 | bundling files: foo/file.txt 6 chunks | |
353 |
bundl |
|
353 | bundling files: foo/file.txt 7 chunks | |
354 |
bundl |
|
354 | bundling files: quux/file.py 8 chunks | |
355 |
bundl |
|
355 | bundling files: quux/file.py 9 chunks | |
356 |
bundl |
|
356 | bundling files: quux/file.py 10 chunks | |
357 |
bundl |
|
357 | bundling files: quux/file.py 11 chunks | |
358 | changesets: 1 chunks |
|
358 | changesets: 1 chunks | |
359 | add changeset ef1ea85a6374 |
|
359 | add changeset ef1ea85a6374 | |
360 | changesets: 2 chunks |
|
360 | changesets: 2 chunks | |
@@ -406,38 +406,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
406 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
406 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
407 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
407 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
408 | adding changesets |
|
408 | adding changesets | |
409 |
bundl |
|
409 | bundling changes: 0 chunks | |
410 |
bundl |
|
410 | bundling changes: 1 chunks | |
411 |
bundl |
|
411 | bundling changes: 2 chunks | |
412 |
bundl |
|
412 | bundling changes: 3 chunks | |
413 |
bundl |
|
413 | bundling changes: 4 chunks | |
414 |
bundl |
|
414 | bundling changes: 5 chunks | |
415 |
bundl |
|
415 | bundling changes: 6 chunks | |
416 |
bundl |
|
416 | bundling changes: 7 chunks | |
417 |
bundl |
|
417 | bundling changes: 8 chunks | |
418 |
bundl |
|
418 | bundling changes: 9 chunks | |
419 |
bundl |
|
419 | bundling manifests: 0 chunks | |
420 |
bundl |
|
420 | bundling manifests: 1 chunks | |
421 |
bundl |
|
421 | bundling manifests: 2 chunks | |
422 |
bundl |
|
422 | bundling manifests: 3 chunks | |
423 |
bundl |
|
423 | bundling manifests: 4 chunks | |
424 |
bundl |
|
424 | bundling manifests: 5 chunks | |
425 |
bundl |
|
425 | bundling manifests: 6 chunks | |
426 |
bundl |
|
426 | bundling manifests: 7 chunks | |
427 |
bundl |
|
427 | bundling manifests: 8 chunks | |
428 |
bundl |
|
428 | bundling manifests: 9 chunks | |
429 |
bundl |
|
429 | bundling files: foo/Bar/file.txt 0 chunks | |
430 |
bundl |
|
430 | bundling files: foo/Bar/file.txt 1 chunks | |
431 |
bundl |
|
431 | bundling files: foo/Bar/file.txt 2 chunks | |
432 |
bundl |
|
432 | bundling files: foo/Bar/file.txt 3 chunks | |
433 |
bundl |
|
433 | bundling files: foo/file.txt 4 chunks | |
434 |
bundl |
|
434 | bundling files: foo/file.txt 5 chunks | |
435 |
bundl |
|
435 | bundling files: foo/file.txt 6 chunks | |
436 |
bundl |
|
436 | bundling files: foo/file.txt 7 chunks | |
437 |
bundl |
|
437 | bundling files: quux/file.py 8 chunks | |
438 |
bundl |
|
438 | bundling files: quux/file.py 9 chunks | |
439 |
bundl |
|
439 | bundling files: quux/file.py 10 chunks | |
440 |
bundl |
|
440 | bundling files: quux/file.py 11 chunks | |
441 | changesets: 1 chunks |
|
441 | changesets: 1 chunks | |
442 | add changeset ef1ea85a6374 |
|
442 | add changeset ef1ea85a6374 | |
443 | changesets: 2 chunks |
|
443 | changesets: 2 chunks | |
@@ -488,38 +488,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
488 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
488 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
489 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
489 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
490 | adding changesets |
|
490 | adding changesets | |
491 |
bundl |
|
491 | bundling changes: 0 chunks | |
492 |
bundl |
|
492 | bundling changes: 1 chunks | |
493 |
bundl |
|
493 | bundling changes: 2 chunks | |
494 |
bundl |
|
494 | bundling changes: 3 chunks | |
495 |
bundl |
|
495 | bundling changes: 4 chunks | |
496 |
bundl |
|
496 | bundling changes: 5 chunks | |
497 |
bundl |
|
497 | bundling changes: 6 chunks | |
498 |
bundl |
|
498 | bundling changes: 7 chunks | |
499 |
bundl |
|
499 | bundling changes: 8 chunks | |
500 |
bundl |
|
500 | bundling changes: 9 chunks | |
501 |
bundl |
|
501 | bundling manifests: 0 chunks | |
502 |
bundl |
|
502 | bundling manifests: 1 chunks | |
503 |
bundl |
|
503 | bundling manifests: 2 chunks | |
504 |
bundl |
|
504 | bundling manifests: 3 chunks | |
505 |
bundl |
|
505 | bundling manifests: 4 chunks | |
506 |
bundl |
|
506 | bundling manifests: 5 chunks | |
507 |
bundl |
|
507 | bundling manifests: 6 chunks | |
508 |
bundl |
|
508 | bundling manifests: 7 chunks | |
509 |
bundl |
|
509 | bundling manifests: 8 chunks | |
510 |
bundl |
|
510 | bundling manifests: 9 chunks | |
511 |
bundl |
|
511 | bundling files: foo/Bar/file.txt 0 chunks | |
512 |
bundl |
|
512 | bundling files: foo/Bar/file.txt 1 chunks | |
513 |
bundl |
|
513 | bundling files: foo/Bar/file.txt 2 chunks | |
514 |
bundl |
|
514 | bundling files: foo/Bar/file.txt 3 chunks | |
515 |
bundl |
|
515 | bundling files: foo/file.txt 4 chunks | |
516 |
bundl |
|
516 | bundling files: foo/file.txt 5 chunks | |
517 |
bundl |
|
517 | bundling files: foo/file.txt 6 chunks | |
518 |
bundl |
|
518 | bundling files: foo/file.txt 7 chunks | |
519 |
bundl |
|
519 | bundling files: quux/file.py 8 chunks | |
520 |
bundl |
|
520 | bundling files: quux/file.py 9 chunks | |
521 |
bundl |
|
521 | bundling files: quux/file.py 10 chunks | |
522 |
bundl |
|
522 | bundling files: quux/file.py 11 chunks | |
523 | changesets: 1 chunks |
|
523 | changesets: 1 chunks | |
524 | add changeset ef1ea85a6374 |
|
524 | add changeset ef1ea85a6374 | |
525 | changesets: 2 chunks |
|
525 | changesets: 2 chunks | |
@@ -573,38 +573,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
573 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
573 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
574 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
574 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
575 | adding changesets |
|
575 | adding changesets | |
576 |
bundl |
|
576 | bundling changes: 0 chunks | |
577 |
bundl |
|
577 | bundling changes: 1 chunks | |
578 |
bundl |
|
578 | bundling changes: 2 chunks | |
579 |
bundl |
|
579 | bundling changes: 3 chunks | |
580 |
bundl |
|
580 | bundling changes: 4 chunks | |
581 |
bundl |
|
581 | bundling changes: 5 chunks | |
582 |
bundl |
|
582 | bundling changes: 6 chunks | |
583 |
bundl |
|
583 | bundling changes: 7 chunks | |
584 |
bundl |
|
584 | bundling changes: 8 chunks | |
585 |
bundl |
|
585 | bundling changes: 9 chunks | |
586 |
bundl |
|
586 | bundling manifests: 0 chunks | |
587 |
bundl |
|
587 | bundling manifests: 1 chunks | |
588 |
bundl |
|
588 | bundling manifests: 2 chunks | |
589 |
bundl |
|
589 | bundling manifests: 3 chunks | |
590 |
bundl |
|
590 | bundling manifests: 4 chunks | |
591 |
bundl |
|
591 | bundling manifests: 5 chunks | |
592 |
bundl |
|
592 | bundling manifests: 6 chunks | |
593 |
bundl |
|
593 | bundling manifests: 7 chunks | |
594 |
bundl |
|
594 | bundling manifests: 8 chunks | |
595 |
bundl |
|
595 | bundling manifests: 9 chunks | |
596 |
bundl |
|
596 | bundling files: foo/Bar/file.txt 0 chunks | |
597 |
bundl |
|
597 | bundling files: foo/Bar/file.txt 1 chunks | |
598 |
bundl |
|
598 | bundling files: foo/Bar/file.txt 2 chunks | |
599 |
bundl |
|
599 | bundling files: foo/Bar/file.txt 3 chunks | |
600 |
bundl |
|
600 | bundling files: foo/file.txt 4 chunks | |
601 |
bundl |
|
601 | bundling files: foo/file.txt 5 chunks | |
602 |
bundl |
|
602 | bundling files: foo/file.txt 6 chunks | |
603 |
bundl |
|
603 | bundling files: foo/file.txt 7 chunks | |
604 |
bundl |
|
604 | bundling files: quux/file.py 8 chunks | |
605 |
bundl |
|
605 | bundling files: quux/file.py 9 chunks | |
606 |
bundl |
|
606 | bundling files: quux/file.py 10 chunks | |
607 |
bundl |
|
607 | bundling files: quux/file.py 11 chunks | |
608 | changesets: 1 chunks |
|
608 | changesets: 1 chunks | |
609 | add changeset ef1ea85a6374 |
|
609 | add changeset ef1ea85a6374 | |
610 | changesets: 2 chunks |
|
610 | changesets: 2 chunks | |
@@ -657,38 +657,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
657 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
657 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
658 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
658 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
659 | adding changesets |
|
659 | adding changesets | |
660 |
bundl |
|
660 | bundling changes: 0 chunks | |
661 |
bundl |
|
661 | bundling changes: 1 chunks | |
662 |
bundl |
|
662 | bundling changes: 2 chunks | |
663 |
bundl |
|
663 | bundling changes: 3 chunks | |
664 |
bundl |
|
664 | bundling changes: 4 chunks | |
665 |
bundl |
|
665 | bundling changes: 5 chunks | |
666 |
bundl |
|
666 | bundling changes: 6 chunks | |
667 |
bundl |
|
667 | bundling changes: 7 chunks | |
668 |
bundl |
|
668 | bundling changes: 8 chunks | |
669 |
bundl |
|
669 | bundling changes: 9 chunks | |
670 |
bundl |
|
670 | bundling manifests: 0 chunks | |
671 |
bundl |
|
671 | bundling manifests: 1 chunks | |
672 |
bundl |
|
672 | bundling manifests: 2 chunks | |
673 |
bundl |
|
673 | bundling manifests: 3 chunks | |
674 |
bundl |
|
674 | bundling manifests: 4 chunks | |
675 |
bundl |
|
675 | bundling manifests: 5 chunks | |
676 |
bundl |
|
676 | bundling manifests: 6 chunks | |
677 |
bundl |
|
677 | bundling manifests: 7 chunks | |
678 |
bundl |
|
678 | bundling manifests: 8 chunks | |
679 |
bundl |
|
679 | bundling manifests: 9 chunks | |
680 |
bundl |
|
680 | bundling files: foo/Bar/file.txt 0 chunks | |
681 |
bundl |
|
681 | bundling files: foo/Bar/file.txt 1 chunks | |
682 |
bundl |
|
682 | bundling files: foo/Bar/file.txt 2 chunks | |
683 |
bundl |
|
683 | bundling files: foo/Bar/file.txt 3 chunks | |
684 |
bundl |
|
684 | bundling files: foo/file.txt 4 chunks | |
685 |
bundl |
|
685 | bundling files: foo/file.txt 5 chunks | |
686 |
bundl |
|
686 | bundling files: foo/file.txt 6 chunks | |
687 |
bundl |
|
687 | bundling files: foo/file.txt 7 chunks | |
688 |
bundl |
|
688 | bundling files: quux/file.py 8 chunks | |
689 |
bundl |
|
689 | bundling files: quux/file.py 9 chunks | |
690 |
bundl |
|
690 | bundling files: quux/file.py 10 chunks | |
691 |
bundl |
|
691 | bundling files: quux/file.py 11 chunks | |
692 | changesets: 1 chunks |
|
692 | changesets: 1 chunks | |
693 | add changeset ef1ea85a6374 |
|
693 | add changeset ef1ea85a6374 | |
694 | changesets: 2 chunks |
|
694 | changesets: 2 chunks | |
@@ -742,38 +742,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
742 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
742 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
743 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
743 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
744 | adding changesets |
|
744 | adding changesets | |
745 |
bundl |
|
745 | bundling changes: 0 chunks | |
746 |
bundl |
|
746 | bundling changes: 1 chunks | |
747 |
bundl |
|
747 | bundling changes: 2 chunks | |
748 |
bundl |
|
748 | bundling changes: 3 chunks | |
749 |
bundl |
|
749 | bundling changes: 4 chunks | |
750 |
bundl |
|
750 | bundling changes: 5 chunks | |
751 |
bundl |
|
751 | bundling changes: 6 chunks | |
752 |
bundl |
|
752 | bundling changes: 7 chunks | |
753 |
bundl |
|
753 | bundling changes: 8 chunks | |
754 |
bundl |
|
754 | bundling changes: 9 chunks | |
755 |
bundl |
|
755 | bundling manifests: 0 chunks | |
756 |
bundl |
|
756 | bundling manifests: 1 chunks | |
757 |
bundl |
|
757 | bundling manifests: 2 chunks | |
758 |
bundl |
|
758 | bundling manifests: 3 chunks | |
759 |
bundl |
|
759 | bundling manifests: 4 chunks | |
760 |
bundl |
|
760 | bundling manifests: 5 chunks | |
761 |
bundl |
|
761 | bundling manifests: 6 chunks | |
762 |
bundl |
|
762 | bundling manifests: 7 chunks | |
763 |
bundl |
|
763 | bundling manifests: 8 chunks | |
764 |
bundl |
|
764 | bundling manifests: 9 chunks | |
765 |
bundl |
|
765 | bundling files: foo/Bar/file.txt 0 chunks | |
766 |
bundl |
|
766 | bundling files: foo/Bar/file.txt 1 chunks | |
767 |
bundl |
|
767 | bundling files: foo/Bar/file.txt 2 chunks | |
768 |
bundl |
|
768 | bundling files: foo/Bar/file.txt 3 chunks | |
769 |
bundl |
|
769 | bundling files: foo/file.txt 4 chunks | |
770 |
bundl |
|
770 | bundling files: foo/file.txt 5 chunks | |
771 |
bundl |
|
771 | bundling files: foo/file.txt 6 chunks | |
772 |
bundl |
|
772 | bundling files: foo/file.txt 7 chunks | |
773 |
bundl |
|
773 | bundling files: quux/file.py 8 chunks | |
774 |
bundl |
|
774 | bundling files: quux/file.py 9 chunks | |
775 |
bundl |
|
775 | bundling files: quux/file.py 10 chunks | |
776 |
bundl |
|
776 | bundling files: quux/file.py 11 chunks | |
777 | changesets: 1 chunks |
|
777 | changesets: 1 chunks | |
778 | add changeset ef1ea85a6374 |
|
778 | add changeset ef1ea85a6374 | |
779 | changesets: 2 chunks |
|
779 | changesets: 2 chunks | |
@@ -828,38 +828,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
828 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
828 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
829 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
829 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
830 | adding changesets |
|
830 | adding changesets | |
831 |
bundl |
|
831 | bundling changes: 0 chunks | |
832 |
bundl |
|
832 | bundling changes: 1 chunks | |
833 |
bundl |
|
833 | bundling changes: 2 chunks | |
834 |
bundl |
|
834 | bundling changes: 3 chunks | |
835 |
bundl |
|
835 | bundling changes: 4 chunks | |
836 |
bundl |
|
836 | bundling changes: 5 chunks | |
837 |
bundl |
|
837 | bundling changes: 6 chunks | |
838 |
bundl |
|
838 | bundling changes: 7 chunks | |
839 |
bundl |
|
839 | bundling changes: 8 chunks | |
840 |
bundl |
|
840 | bundling changes: 9 chunks | |
841 |
bundl |
|
841 | bundling manifests: 0 chunks | |
842 |
bundl |
|
842 | bundling manifests: 1 chunks | |
843 |
bundl |
|
843 | bundling manifests: 2 chunks | |
844 |
bundl |
|
844 | bundling manifests: 3 chunks | |
845 |
bundl |
|
845 | bundling manifests: 4 chunks | |
846 |
bundl |
|
846 | bundling manifests: 5 chunks | |
847 |
bundl |
|
847 | bundling manifests: 6 chunks | |
848 |
bundl |
|
848 | bundling manifests: 7 chunks | |
849 |
bundl |
|
849 | bundling manifests: 8 chunks | |
850 |
bundl |
|
850 | bundling manifests: 9 chunks | |
851 |
bundl |
|
851 | bundling files: foo/Bar/file.txt 0 chunks | |
852 |
bundl |
|
852 | bundling files: foo/Bar/file.txt 1 chunks | |
853 |
bundl |
|
853 | bundling files: foo/Bar/file.txt 2 chunks | |
854 |
bundl |
|
854 | bundling files: foo/Bar/file.txt 3 chunks | |
855 |
bundl |
|
855 | bundling files: foo/file.txt 4 chunks | |
856 |
bundl |
|
856 | bundling files: foo/file.txt 5 chunks | |
857 |
bundl |
|
857 | bundling files: foo/file.txt 6 chunks | |
858 |
bundl |
|
858 | bundling files: foo/file.txt 7 chunks | |
859 |
bundl |
|
859 | bundling files: quux/file.py 8 chunks | |
860 |
bundl |
|
860 | bundling files: quux/file.py 9 chunks | |
861 |
bundl |
|
861 | bundling files: quux/file.py 10 chunks | |
862 |
bundl |
|
862 | bundling files: quux/file.py 11 chunks | |
863 | changesets: 1 chunks |
|
863 | changesets: 1 chunks | |
864 | add changeset ef1ea85a6374 |
|
864 | add changeset ef1ea85a6374 | |
865 | changesets: 2 chunks |
|
865 | changesets: 2 chunks | |
@@ -918,38 +918,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
918 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
918 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
919 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
919 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
920 | adding changesets |
|
920 | adding changesets | |
921 |
bundl |
|
921 | bundling changes: 0 chunks | |
922 |
bundl |
|
922 | bundling changes: 1 chunks | |
923 |
bundl |
|
923 | bundling changes: 2 chunks | |
924 |
bundl |
|
924 | bundling changes: 3 chunks | |
925 |
bundl |
|
925 | bundling changes: 4 chunks | |
926 |
bundl |
|
926 | bundling changes: 5 chunks | |
927 |
bundl |
|
927 | bundling changes: 6 chunks | |
928 |
bundl |
|
928 | bundling changes: 7 chunks | |
929 |
bundl |
|
929 | bundling changes: 8 chunks | |
930 |
bundl |
|
930 | bundling changes: 9 chunks | |
931 |
bundl |
|
931 | bundling manifests: 0 chunks | |
932 |
bundl |
|
932 | bundling manifests: 1 chunks | |
933 |
bundl |
|
933 | bundling manifests: 2 chunks | |
934 |
bundl |
|
934 | bundling manifests: 3 chunks | |
935 |
bundl |
|
935 | bundling manifests: 4 chunks | |
936 |
bundl |
|
936 | bundling manifests: 5 chunks | |
937 |
bundl |
|
937 | bundling manifests: 6 chunks | |
938 |
bundl |
|
938 | bundling manifests: 7 chunks | |
939 |
bundl |
|
939 | bundling manifests: 8 chunks | |
940 |
bundl |
|
940 | bundling manifests: 9 chunks | |
941 |
bundl |
|
941 | bundling files: foo/Bar/file.txt 0 chunks | |
942 |
bundl |
|
942 | bundling files: foo/Bar/file.txt 1 chunks | |
943 |
bundl |
|
943 | bundling files: foo/Bar/file.txt 2 chunks | |
944 |
bundl |
|
944 | bundling files: foo/Bar/file.txt 3 chunks | |
945 |
bundl |
|
945 | bundling files: foo/file.txt 4 chunks | |
946 |
bundl |
|
946 | bundling files: foo/file.txt 5 chunks | |
947 |
bundl |
|
947 | bundling files: foo/file.txt 6 chunks | |
948 |
bundl |
|
948 | bundling files: foo/file.txt 7 chunks | |
949 |
bundl |
|
949 | bundling files: quux/file.py 8 chunks | |
950 |
bundl |
|
950 | bundling files: quux/file.py 9 chunks | |
951 |
bundl |
|
951 | bundling files: quux/file.py 10 chunks | |
952 |
bundl |
|
952 | bundling files: quux/file.py 11 chunks | |
953 | changesets: 1 chunks |
|
953 | changesets: 1 chunks | |
954 | add changeset ef1ea85a6374 |
|
954 | add changeset ef1ea85a6374 | |
955 | changesets: 2 chunks |
|
955 | changesets: 2 chunks | |
@@ -1007,38 +1007,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
1007 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
1007 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
1008 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
1008 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
1009 | adding changesets |
|
1009 | adding changesets | |
1010 |
bundl |
|
1010 | bundling changes: 0 chunks | |
1011 |
bundl |
|
1011 | bundling changes: 1 chunks | |
1012 |
bundl |
|
1012 | bundling changes: 2 chunks | |
1013 |
bundl |
|
1013 | bundling changes: 3 chunks | |
1014 |
bundl |
|
1014 | bundling changes: 4 chunks | |
1015 |
bundl |
|
1015 | bundling changes: 5 chunks | |
1016 |
bundl |
|
1016 | bundling changes: 6 chunks | |
1017 |
bundl |
|
1017 | bundling changes: 7 chunks | |
1018 |
bundl |
|
1018 | bundling changes: 8 chunks | |
1019 |
bundl |
|
1019 | bundling changes: 9 chunks | |
1020 |
bundl |
|
1020 | bundling manifests: 0 chunks | |
1021 |
bundl |
|
1021 | bundling manifests: 1 chunks | |
1022 |
bundl |
|
1022 | bundling manifests: 2 chunks | |
1023 |
bundl |
|
1023 | bundling manifests: 3 chunks | |
1024 |
bundl |
|
1024 | bundling manifests: 4 chunks | |
1025 |
bundl |
|
1025 | bundling manifests: 5 chunks | |
1026 |
bundl |
|
1026 | bundling manifests: 6 chunks | |
1027 |
bundl |
|
1027 | bundling manifests: 7 chunks | |
1028 |
bundl |
|
1028 | bundling manifests: 8 chunks | |
1029 |
bundl |
|
1029 | bundling manifests: 9 chunks | |
1030 |
bundl |
|
1030 | bundling files: foo/Bar/file.txt 0 chunks | |
1031 |
bundl |
|
1031 | bundling files: foo/Bar/file.txt 1 chunks | |
1032 |
bundl |
|
1032 | bundling files: foo/Bar/file.txt 2 chunks | |
1033 |
bundl |
|
1033 | bundling files: foo/Bar/file.txt 3 chunks | |
1034 |
bundl |
|
1034 | bundling files: foo/file.txt 4 chunks | |
1035 |
bundl |
|
1035 | bundling files: foo/file.txt 5 chunks | |
1036 |
bundl |
|
1036 | bundling files: foo/file.txt 6 chunks | |
1037 |
bundl |
|
1037 | bundling files: foo/file.txt 7 chunks | |
1038 |
bundl |
|
1038 | bundling files: quux/file.py 8 chunks | |
1039 |
bundl |
|
1039 | bundling files: quux/file.py 9 chunks | |
1040 |
bundl |
|
1040 | bundling files: quux/file.py 10 chunks | |
1041 |
bundl |
|
1041 | bundling files: quux/file.py 11 chunks | |
1042 | changesets: 1 chunks |
|
1042 | changesets: 1 chunks | |
1043 | add changeset ef1ea85a6374 |
|
1043 | add changeset ef1ea85a6374 | |
1044 | changesets: 2 chunks |
|
1044 | changesets: 2 chunks | |
@@ -1103,38 +1103,38 b' ef1ea85a6374b77d6da9dcda9541f498f2d17df7' | |||||
1103 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd |
|
1103 | f9cafe1212c8c6fa1120d14a556e18cc44ff8bdd | |
1104 | 911600dab2ae7a9baff75958b84fe606851ce955 |
|
1104 | 911600dab2ae7a9baff75958b84fe606851ce955 | |
1105 | adding changesets |
|
1105 | adding changesets | |
1106 |
bundl |
|
1106 | bundling changes: 0 chunks | |
1107 |
bundl |
|
1107 | bundling changes: 1 chunks | |
1108 |
bundl |
|
1108 | bundling changes: 2 chunks | |
1109 |
bundl |
|
1109 | bundling changes: 3 chunks | |
1110 |
bundl |
|
1110 | bundling changes: 4 chunks | |
1111 |
bundl |
|
1111 | bundling changes: 5 chunks | |
1112 |
bundl |
|
1112 | bundling changes: 6 chunks | |
1113 |
bundl |
|
1113 | bundling changes: 7 chunks | |
1114 |
bundl |
|
1114 | bundling changes: 8 chunks | |
1115 |
bundl |
|
1115 | bundling changes: 9 chunks | |
1116 |
bundl |
|
1116 | bundling manifests: 0 chunks | |
1117 |
bundl |
|
1117 | bundling manifests: 1 chunks | |
1118 |
bundl |
|
1118 | bundling manifests: 2 chunks | |
1119 |
bundl |
|
1119 | bundling manifests: 3 chunks | |
1120 |
bundl |
|
1120 | bundling manifests: 4 chunks | |
1121 |
bundl |
|
1121 | bundling manifests: 5 chunks | |
1122 |
bundl |
|
1122 | bundling manifests: 6 chunks | |
1123 |
bundl |
|
1123 | bundling manifests: 7 chunks | |
1124 |
bundl |
|
1124 | bundling manifests: 8 chunks | |
1125 |
bundl |
|
1125 | bundling manifests: 9 chunks | |
1126 |
bundl |
|
1126 | bundling files: foo/Bar/file.txt 0 chunks | |
1127 |
bundl |
|
1127 | bundling files: foo/Bar/file.txt 1 chunks | |
1128 |
bundl |
|
1128 | bundling files: foo/Bar/file.txt 2 chunks | |
1129 |
bundl |
|
1129 | bundling files: foo/Bar/file.txt 3 chunks | |
1130 |
bundl |
|
1130 | bundling files: foo/file.txt 4 chunks | |
1131 |
bundl |
|
1131 | bundling files: foo/file.txt 5 chunks | |
1132 |
bundl |
|
1132 | bundling files: foo/file.txt 6 chunks | |
1133 |
bundl |
|
1133 | bundling files: foo/file.txt 7 chunks | |
1134 |
bundl |
|
1134 | bundling files: quux/file.py 8 chunks | |
1135 |
bundl |
|
1135 | bundling files: quux/file.py 9 chunks | |
1136 |
bundl |
|
1136 | bundling files: quux/file.py 10 chunks | |
1137 |
bundl |
|
1137 | bundling files: quux/file.py 11 chunks | |
1138 | changesets: 1 chunks |
|
1138 | changesets: 1 chunks | |
1139 | add changeset ef1ea85a6374 |
|
1139 | add changeset ef1ea85a6374 | |
1140 | changesets: 2 chunks |
|
1140 | changesets: 2 chunks |
@@ -341,25 +341,25 b' 2 changesets found' | |||||
341 | list of changesets: |
|
341 | list of changesets: | |
342 | d2ae7f538514cd87c17547b0de4cea71fe1af9fb |
|
342 | d2ae7f538514cd87c17547b0de4cea71fe1af9fb | |
343 | 5ece8e77363e2b5269e27c66828b72da29e4341a |
|
343 | 5ece8e77363e2b5269e27c66828b72da29e4341a | |
344 |
bundl |
|
344 | bundling changes: 0 chunks | |
345 |
bundl |
|
345 | bundling changes: 1 chunks | |
346 |
bundl |
|
346 | bundling changes: 2 chunks | |
347 |
bundl |
|
347 | bundling changes: 3 chunks | |
348 |
bundl |
|
348 | bundling changes: 4 chunks | |
349 |
bundl |
|
349 | bundling changes: 5 chunks | |
350 |
bundl |
|
350 | bundling changes: 6 chunks | |
351 |
bundl |
|
351 | bundling manifests: 0 chunks | |
352 |
bundl |
|
352 | bundling manifests: 1 chunks | |
353 |
bundl |
|
353 | bundling manifests: 2 chunks | |
354 |
bundl |
|
354 | bundling manifests: 3 chunks | |
355 |
bundl |
|
355 | bundling manifests: 4 chunks | |
356 |
bundl |
|
356 | bundling manifests: 5 chunks | |
357 |
bundl |
|
357 | bundling manifests: 6 chunks | |
358 |
bundl |
|
358 | bundling files: b 0 chunks | |
359 |
bundl |
|
359 | bundling files: b 1 chunks | |
360 |
bundl |
|
360 | bundling files: b 2 chunks | |
361 |
bundl |
|
361 | bundling files: b 3 chunks | |
362 |
bundl |
|
362 | bundling files: b1 4 chunks | |
363 |
bundl |
|
363 | bundling files: b1 5 chunks | |
364 |
bundl |
|
364 | bundling files: b1 6 chunks | |
365 |
bundl |
|
365 | bundling files: b1 7 chunks |
@@ -17,7 +17,7 b' not linkable: 00changelog.i' | |||||
17 | not linkable: 00manifest.i |
|
17 | not linkable: 00manifest.i | |
18 | not linkable: data/b.i |
|
18 | not linkable: data/b.i | |
19 | pruned down to 2 probably relinkable files |
|
19 | pruned down to 2 probably relinkable files | |
20 | relink: data/a.i 1/2 files (50.00%) |
|
20 | relinking: data/a.i 1/2 files (50.00%) | |
21 | not linkable: data/dummy.i |
|
21 | not linkable: data/dummy.i | |
22 | relinked 1 files (136 bytes reclaimed) |
|
22 | relinked 1 files (136 bytes reclaimed) | |
23 | % check hardlinks |
|
23 | % check hardlinks |
@@ -263,6 +263,6 b' committing subrepository nested_absolute' | |||||
263 | updating to branch default |
|
263 | updating to branch default | |
264 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
264 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
265 | [paths] |
|
265 | [paths] | |
266 |
default = $HGTMP/test-subrepo/sub/mercurial/ |
|
266 | default = $HGTMP/test-subrepo/sub/mercurial/nested_absolute | |
267 | [paths] |
|
267 | [paths] | |
268 | default = $HGTMP/test-subrepo/sub/mercurial/main/nested_relative |
|
268 | default = $HGTMP/test-subrepo/sub/mercurial/main/../nested_relative |
General Comments 0
You need to be logged in to leave comments.
Login now