comparison tests/test-mq.t @ 19826:4b1cbcfdabf7

mq: extract strip function as its standalone extension (issue3824) Strip now lives in its own extension reminder: The extension is surprisingly called `strip`. The `mq` extension force the use of the strip extension when its enabled. This is both necessary for backward compatibility (people expect `mq` to comes with strip) and become some utility function used by `mq` are now in the strip extension.
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
date Thu, 26 Sep 2013 23:57:21 +0200
parents 1663fe10f693
children 9a299c39de01
comparison
equal deleted inserted replaced
19825:4b4997068143 19826:4b1cbcfdabf7
64 keepchanges = True 64 keepchanges = True
65 65
66 make them behave as if --keep-changes were passed, and non-conflicting local 66 make them behave as if --keep-changes were passed, and non-conflicting local
67 changes will be tolerated and preserved. If incompatible options such as 67 changes will be tolerated and preserved. If incompatible options such as
68 -f/--force or --exact are passed, this setting is ignored. 68 -f/--force or --exact are passed, this setting is ignored.
69
70 This extension used to provide a strip command. This command now lives in the
71 strip extension.
69 72
70 list of commands: 73 list of commands:
71 74
72 qapplied print the patches already applied 75 qapplied print the patches already applied
73 qclone clone main and patch repository at same time 76 qclone clone main and patch repository at same time
89 qrename rename a patch 92 qrename rename a patch
90 qselect set or print guarded patches to push 93 qselect set or print guarded patches to push
91 qseries print the entire series file 94 qseries print the entire series file
92 qtop print the name of the current patch 95 qtop print the name of the current patch
93 qunapplied print the patches not yet applied 96 qunapplied print the patches not yet applied
94 strip strip changesets and all their descendants from the repository
95 97
96 use "hg -v help mq" to show builtin aliases and global options 98 use "hg -v help mq" to show builtin aliases and global options
97 99
98 $ hg init a 100 $ hg init a
99 $ cd a 101 $ cd a