Skip to content
Snippets Groups Projects
Commit debc2990 authored by Martin von Zweigbergk's avatar Martin von Zweigbergk
Browse files

rewriteutil: look up common predecessor on unfiltered repo

Before this patch, the code looking for divergence could crash when
tried to look up a common predecessor in the filtered repo. This patch
fixes that by looking up the common predecessor in an unfiltered repo.

Differential Revision: https://phab.mercurial-scm.org/D10917
parent 93ca7d32
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,7 @@
for r in obsrevs:
div = find_new_divergence_from(repo, repo[r])
if div:
return (repo[r], repo[div[0]], repo[div[1]])
return (repo[r], repo[div[0]], repo.unfiltered()[div[1]])
return None
......
......@@ -273,9 +273,9 @@
0 files updated, 0 files merged, 0 files removed, 0 files unresolved
Try to cause divergence
$ hg amend -m C11
abort: filtered revision '26805aba1e600a82e93661149f2313866a221a7b' (known-bad-output !)
[255]
[10]
abort: cannot amend 2758767f5d17, as that creates content-divergence with bfcb433a0dea, from 26805aba1e60
(add --verbose for details or see 'hg help evolution.instability')
[10]
#endif
Cannot amend public changeset
......
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