##// END OF EJS Templates
bundlerepo: don't return the peer without bundlerepo from getremotechanges...
Mads Kiilerich -
r18138:8ab0640c stable
parent child Browse files
Show More
@@ -347,7 +347,7 b' def getremotechanges(ui, repo, other, on'
347 os.unlink(bundlename)
347 os.unlink(bundlename)
348 except OSError:
348 except OSError:
349 pass
349 pass
350 return other, [], other.close
350 return repo, [], other.close
351
351
352 bundle = None
352 bundle = None
353 bundlerepo = None
353 bundlerepo = None
@@ -288,6 +288,15 b' remote transplant with pull'
288 1 b1
288 1 b1
289 0 r1
289 0 r1
290
290
291 remote transplant without pull
292
293 $ hg pull -q http://localhost:$HGPORT/
294 $ hg transplant -s http://localhost:$HGPORT/ 2 4
295 searching for changes
296 skipping already applied revision 2:8d9279348abb
297 applying 722f4667af76
298 722f4667af76 transplanted to 76e321915884
299
291 transplant --continue
300 transplant --continue
292
301
293 $ hg init ../tc
302 $ hg init ../tc
General Comments 0
You need to be logged in to leave comments. Login now