Skip to content
Snippets Groups Projects
Commit 71a96f6c authored by Benoit Boissinot's avatar Benoit Boissinot
Browse files

bookmarks: discard current bookmark if absent from the bookmarks (issue2692)

After a rollback, the current bookmark might be absent from the bookmarks
file. In that case we discard it instead of displaying a traceback during
commit.
parent 4e96a5be
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@
file = repo.opener('bookmarks.current')
# No readline() in posixfile_nt, reading everything is cheap
mark = encoding.tolocal((file.readlines() or [''])[0])
if mark == '':
if mark == '' or mark not in repo._bookmarks:
mark = None
file.close()
return mark
......
......@@ -84,7 +84,13 @@
$ hg bookmarks
no bookmarks set
can we commit? (issue2692)
$ echo c > c
$ hg ci -Am rockon
adding c
can you be added again?
$ hg bookmarks markb
$ hg bookmarks
......@@ -87,9 +93,9 @@
can you be added again?
$ hg bookmarks markb
$ hg bookmarks
* markb 0:07f494440405
* markb 1:fdb34407462c
rollback dry run with rollback information
$ hg rollback -n
......@@ -92,7 +98,15 @@
rollback dry run with rollback information
$ hg rollback -n
repository tip rolled back to revision 0 (undo commit)
$ hg bookmarks
* markb 1:fdb34407462c
rollback dry run with rollback information and no commit undo
$ rm .hg/store/undo
$ hg rollback -n
no rollback information available
[1]
$ hg bookmarks
......@@ -96,7 +110,7 @@
no rollback information available
[1]
$ hg bookmarks
* markb 0:07f494440405
* markb 1:fdb34407462c
$ cd ..
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment