shelvedstate should store info about interactive mode after D6679.
This patch modifies the behavior of hg unshelve --continue after
an unshelve on interactive mode to get the basename from the
shelvedstate.
Details
Details
- Reviewers
navaneeth.suresh - Group Reviewers
hg-reviewers
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
Event Timeline
tests/test-shelve.t | ||
---|---|---|
1354 ↗ | (On Diff #16037) | This test change should be in the parent differential. |
mercurial/shelve.py | ||
---|---|---|
949 | Now I understand how this and the parent patches are arranged. Why don't be have all the logic related to interactive in unshelvecontinue, including getting the name of the shelve we are processing. Right now, we are getting name of top most shelve, however we should read the shelvedstate and get the name from there. |
mercurial/shelve.py | ||
---|---|---|
949 | Doing that right away! |
Comment Actions
Sorry for getting this and the parent patch split before, after the recent improvements, it looks like they should be folded into one.
Now I understand how this and the parent patches are arranged.
Why don't be have all the logic related to interactive in unshelvecontinue, including getting the name of the shelve we are processing.
Right now, we are getting name of top most shelve, however we should read the shelvedstate and get the name from there.