comparison tests/test-hgweb-json.t @ 42612:3c16b9c0b099

continue: added logic for hg continue This is part of GSoC19 project `Implement abort and continue commands`. This patch is part of the continue plan. This adds the basic logic for hg continue. This command aborts an multistep operation like graft, histedit, rebase, transplant and unshelve if they are in an unfinished state. The first part of the logic is determining the unfinished operation from the state detection API under statemod. This API is extended to support hg continue by adding a method to register the abort logic as a function (here continuefunc). Once the unfinished operation is determined the registered logic is used to resume the command in case it is interrupted. The benefit of this kind of framework is that any new extension developed can support hg continue by registering the command and logic under statedetection API. hg continue currently supports --dry-run/-n flag only. It is used to dry run hg abort Differential Revision: https://phab.mercurial-scm.org/D6645
author Taapas Agrawal <taapas2897@gmail.com>
date Mon, 15 Jul 2019 22:23:31 +0530
parents bb135a784b70
children d782cce137fd
comparison
equal deleted inserted replaced
42611:2f760da140ee 42612:3c16b9c0b099
1893 { 1893 {
1894 "summary": "commit the specified files or all outstanding changes", 1894 "summary": "commit the specified files or all outstanding changes",
1895 "topic": "commit" 1895 "topic": "commit"
1896 }, 1896 },
1897 { 1897 {
1898 "summary": "resumes an interrupted operation (EXPERIMENTAL)",
1899 "topic": "continue"
1900 },
1901 {
1898 "summary": "diff repository (or selected files)", 1902 "summary": "diff repository (or selected files)",
1899 "topic": "diff" 1903 "topic": "diff"
1900 }, 1904 },
1901 { 1905 {
1902 "summary": "dump the header and diffs for one or more changesets", 1906 "summary": "dump the header and diffs for one or more changesets",