Comments
Patch
@@ -705,5 +705,28 @@ def delete(repo, names):
mark)
if mark == repo._activebookmark:
deactivate(repo)
del marks[mark]
marks.recordchange(tr)
+
+def rename(repo, old, new, force=False, inactive=False):
+ """rename a bookmark from old to new
+
+ If force is specified, then the new name can overwrite an existing
+ bookmark.
+
+ If inactive is specified, then do not activate the new bookmark.
+
+ Raises an abort error if old is not in the bookmark store.
+ """
+ with repo.wlock(), repo.lock(), repo.transaction('bookmark') as tr:
+ marks = repo._bookmarks
+ mark = checkformat(repo, new)
+ if old not in marks:
+ raise error.Abort(_("bookmark '%s' does not exist")
+ % old)
+ marks.checkconflict(mark, force)
+ marks[mark] = marks[old]
+ if repo._activebookmark == old and not inactive:
+ activate(repo, mark)
+ del marks[old]
+ marks.recordchange(tr)
@@ -974,24 +974,15 @@ def bookmark(ui, repo, *names, **opts):
cur = repo.changectx('.').node()
marks = repo._bookmarks
if delete:
bookmarks.delete(repo, names)
elif rename:
- tr = repo.transaction('bookmark')
if not names:
raise error.Abort(_("new bookmark name required"))
elif len(names) > 1:
raise error.Abort(_("only one new bookmark name allowed"))
- mark = bookmarks.checkformat(repo, names[0])
- if rename not in marks:
- raise error.Abort(_("bookmark '%s' does not exist")
- % rename)
- marks.checkconflict(mark, force)
- marks[mark] = marks[rename]
- if repo._activebookmark == rename and not inactive:
- bookmarks.activate(repo, mark)
- del marks[rename]
+ bookmarks.rename(repo, rename, names[0], force, inactive)
elif names:
tr = repo.transaction('bookmark')
newact = None
for mark in names:
mark = bookmarks.checkformat(repo, mark)