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