##// END OF EJS Templates
merge with crew-stable
Thomas Arendsen Hein -
r17036:ab4644c3 merge default
parent child Browse files
Show More
@@ -732,7 +732,7 b' class svnsubrepo(abstractsubrepo):'
732 732 # URL exists at lastrev. Test it and fallback to rev it
733 733 # is not there.
734 734 try:
735 self._svncommand(['info', '%s@%s' % (self._state[0], lastrev)])
735 self._svncommand(['list', '%s@%s' % (self._state[0], lastrev)])
736 736 return lastrev
737 737 except error.Abort:
738 738 pass
@@ -218,25 +218,23 b' Multiple branches'
218 218 $ bzr co repo/trunk repo-trunk
219 219 $ cd repo-trunk
220 220 $ echo a > a
221 $ bzr add a
222 adding a
223 $ bzr ci -qm adda --commit-time '2012-01-01 00:00:01 +0000'
221 $ bzr add -q a
222 $ bzr ci -qm adda
224 223 $ bzr tag trunk-tag
225 224 Created tag trunk-tag.
226 225 $ bzr switch -b branch
227 226 Tree is up to date at revision 1.
228 227 Switched to branch: *repo/branch/ (glob)
229 228 $ echo b > b
230 $ bzr add b
231 adding b
232 $ bzr ci -qm addb --commit-time '2012-01-01 00:00:02 +0000'
229 $ bzr add -q b
230 $ bzr ci -qm addb
233 231 $ bzr tag branch-tag
234 232 Created tag branch-tag.
235 233 $ bzr switch --force ../repo/trunk
236 234 Updated to revision 1.
237 235 Switched to branch: */repo/trunk/ (glob)
238 236 $ echo a >> a
239 $ bzr ci -qm changea --commit-time '2012-01-01 00:00:03 +0000'
237 $ bzr ci -qm changea
240 238 $ cd ..
241 239 $ hg convert --datesort repo repo-bzr
242 240 initializing destination repo-bzr repository
@@ -272,8 +270,7 b' Nested repositories (issue3254)'
272 270 $ bzr co repo/inner/trunk inner-trunk
273 271 $ cd inner-trunk
274 272 $ echo b > b
275 $ bzr add b
276 adding b
273 $ bzr add -q b
277 274 $ bzr ci -qm addb
278 275 $ cd ..
279 276 $ hg convert --datesort repo noinner-bzr
General Comments 0
You need to be logged in to leave comments. Login now