##// END OF EJS Templates
bookmark: use 'applychanges' when updating from a remote
Boris Feld -
r33484:2a8ce4e7 default
parent child Browse files
Show More
@@ -579,10 +579,11 b' def updatefromremote(ui, repo, remotemar'
579
579
580 if changed:
580 if changed:
581 tr = trfunc()
581 tr = trfunc()
582 changes = []
582 for b, node, writer, msg in sorted(changed):
583 for b, node, writer, msg in sorted(changed):
583 localmarks[b] = node
584 changes.append((b, node))
584 writer(msg)
585 writer(msg)
585 localmarks.recordchange(tr)
586 localmarks.applychanges(repo, tr, changes)
586
587
587 def incoming(ui, repo, other):
588 def incoming(ui, repo, other):
588 '''Show bookmarks incoming from other to repo
589 '''Show bookmarks incoming from other to repo
General Comments 0
You need to be logged in to leave comments. Login now