Mercurial > hg
diff hgext/uncommit.py @ 51700:7f0cb9ee0534
Backout accidental publication of a large range of revisions
I accidentally published 25e7f9dcad0f::bd1483fd7088, this is the inverse.
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Tue, 23 Jul 2024 10:02:46 +0200 |
parents | 493034cc3265 |
children | ca7bde5dbafb |
line wrap: on
line diff
--- a/hgext/uncommit.py Mon Jul 22 16:49:38 2024 +0200 +++ b/hgext/uncommit.py Tue Jul 23 10:02:46 2024 +0200 @@ -154,6 +154,7 @@ cmdutil.resolve_commit_options(ui, opts) with repo.wlock(), repo.lock(): + st = repo.status() m, a, r, d = st.modified, st.added, st.removed, st.deleted isdirtypath = any(set(m + a + r + d) & set(pats)) @@ -263,6 +264,7 @@ unfi = repo.unfiltered() with repo.wlock(), repo.lock(), repo.transaction(b'unamend'): + # identify the commit from which to unamend curctx = repo[b'.']