comparison tests/test-amend-subrepo.t @ 41330:4ea21df312ec stable 4.9.1

record: prevent commits that don't pick up dirty subrepo changes (issue6102) This path covers interactive mode for commit, amend, and shelve, as well as the deprecated record extension. Since shelf creation uses commit without -S in the non-interactive case, aborting here should be OK. (I didn't check what happens to non interactive shelve creation if `ui.commitsubrepos=True` is set.) subrepoutil.precommit() will abort on a dirty subrepo if the config option isn't set, but the hint recommends using --subrepos to commit. Since only the commit command currently supports that option, the error has to be raised here to omit the hint. Doing the check before asking about all of the hunks in the MQ test seems like an improvement on its own. There's probably an additional check on this path that can be removed.
author Matt Harbison <matt_harbison@yahoo.com>
date Sat, 16 Mar 2019 14:40:21 -0400
parents 4441705b7111
children 4b7d5d10c45d
comparison
equal deleted inserted replaced
41329:406519302520 41330:4ea21df312ec
119 add new commit to be amended 119 add new commit to be amended
120 120
121 $ echo a >> a 121 $ echo a >> a
122 $ hg ci -m3 122 $ hg ci -m3
123 123
124 $ echo 't = t' > .hgsub
125
126 --interactive won't silently ignore dirty subrepos
127
128 $ echo modified > t/b
129 $ hg amend --interactive --config ui.interactive=True
130 abort: uncommitted changes in subrepository "t"
131 [255]
132 $ hg amend --interactive --config ui.interactive=True --config ui.commitsubrepos=True
133 abort: uncommitted changes in subrepository "t"
134 [255]
135
136 $ hg -R t revert -q --all --no-backup
137
124 amend with one subrepo dropped 138 amend with one subrepo dropped
125 139
126 $ echo 't = t' > .hgsub
127 $ hg amend 140 $ hg amend
128 saved backup bundle to * (glob) (obsstore-off !) 141 saved backup bundle to * (glob) (obsstore-off !)
129 $ hg status --change . 142 $ hg status --change .
130 M .hgsub 143 M .hgsub
131 M .hgsubstate 144 M .hgsubstate