commit: use `dirstate.change_files` to scope the associated `addremove`
This was significantly more complicated than I expected, because multiple extensions get in the way. I introduced a context that lazily open the transaction and associated context to work around these complication. See the inline documentation for details. Introducing the wrapping transaction remove the need for dirstate-guard (one of the ultimate goal of all this), and slightly affect the result of a `hg rollback` after a `hg commit --addremove`. That last part is deemed fine. It aligns the behavior with what happens after a failed `hg commit --addremove` and nobody should be using `hg rollback` anyway. The small output change in the test come from the different transaction timing and fact the transaction now backup the dirstate before the addremove, which might mean "no file to backup" when the repository starts from an empty state.
parent
a46dfc2b58a3
No related branches found
No related tags found
Showing
- hgext/largefiles/overrides.py 16 additions, 3 deletionshgext/largefiles/overrides.py
- mercurial/cmdutil.py 102 additions, 9 deletionsmercurial/cmdutil.py
- mercurial/scmutil.py 4 additions, 2 deletionsmercurial/scmutil.py
- tests/test-fncache.t 0 additions, 4 deletionstests/test-fncache.t
- tests/test-inherit-mode.t 0 additions, 2 deletionstests/test-inherit-mode.t
- tests/test-racy-mutations.t 2 additions, 2 deletionstests/test-racy-mutations.t
Loading
-
mentioned in commit a4f51196123f
-
mentioned in commit fef5bca96513
Please register or sign in to comment