Show More
@@ -1722,7 +1722,7 b' def delete(ui, repo, *patches, **opts):' | |||
|
1722 | 1722 | -k/--keep, the patch files are preserved in the patch directory. |
|
1723 | 1723 | |
|
1724 | 1724 | To stop managing a patch and move it into permanent history, |
|
1725 | use the qfinish command.""" | |
|
1725 | use the :hg:`qfinish` command.""" | |
|
1726 | 1726 | q = repo.mq |
|
1727 | 1727 | q.delete(repo, patches, opts) |
|
1728 | 1728 | q.save_dirty() |
@@ -2131,8 +2131,8 b' def guard(ui, repo, *args, **opts):' | |||
|
2131 | 2131 | |
|
2132 | 2132 | Guards control whether a patch can be pushed. A patch with no |
|
2133 | 2133 | guards is always pushed. A patch with a positive guard ("+foo") is |
|
2134 | pushed only if the qselect command has activated it. A patch with | |
|
2135 | a negative guard ("-foo") is never pushed if the qselect command | |
|
2134 | pushed only if the :hg:`qselect` command has activated it. A patch with | |
|
2135 | a negative guard ("-foo") is never pushed if the :hg:`qselect` command | |
|
2136 | 2136 | has activated it. |
|
2137 | 2137 | |
|
2138 | 2138 | With no arguments, print the currently active guards. |
@@ -2414,7 +2414,7 b' def strip(ui, repo, rev, **opts):' | |||
|
2414 | 2414 | def select(ui, repo, *args, **opts): |
|
2415 | 2415 | '''set or print guarded patches to push |
|
2416 | 2416 | |
|
2417 | Use the qguard command to set or print guards on patch, then use | |
|
2417 | Use the :hg:`qguard` command to set or print guards on patch, then use | |
|
2418 | 2418 | qselect to tell mq which guards to use. A patch will be pushed if |
|
2419 | 2419 | it has no guards or any positive guards match the currently |
|
2420 | 2420 | selected guard, but will not be pushed if any negative guards |
General Comments 0
You need to be logged in to leave comments.
Login now