##// END OF EJS Templates
mq: fix qapplied --last and qprev documentation (issue3282)...
Patrick Mezard -
r16188:6b52963c stable
parent child Browse files
Show More
@@ -1929,7 +1929,7 b' def delete(ui, repo, *patches, **opts):'
1929 return 0
1929 return 0
1930
1930
1931 @command("qapplied",
1931 @command("qapplied",
1932 [('1', 'last', None, _('show only the last patch'))
1932 [('1', 'last', None, _('show only the preceding applied patch'))
1933 ] + seriesopts,
1933 ] + seriesopts,
1934 _('hg qapplied [-1] [-s] [PATCH]'))
1934 _('hg qapplied [-1] [-s] [PATCH]'))
1935 def applied(ui, repo, patch=None, **opts):
1935 def applied(ui, repo, patch=None, **opts):
@@ -2224,7 +2224,7 b' def next(ui, repo, **opts):'
2224
2224
2225 @command("qprev", seriesopts, _('hg qprev [-s]'))
2225 @command("qprev", seriesopts, _('hg qprev [-s]'))
2226 def prev(ui, repo, **opts):
2226 def prev(ui, repo, **opts):
2227 """print the name of the previous applied patch
2227 """print the name of the preceding applied patch
2228
2228
2229 Returns 0 on success."""
2229 Returns 0 on success."""
2230 q = repo.mq
2230 q = repo.mq
@@ -74,7 +74,7 b' help'
74 qnew create a new patch
74 qnew create a new patch
75 qnext print the name of the next pushable patch
75 qnext print the name of the next pushable patch
76 qpop pop the current patch off the stack
76 qpop pop the current patch off the stack
77 qprev print the name of the previous applied patch
77 qprev print the name of the preceding applied patch
78 qpush push the next patch onto the stack
78 qpush push the next patch onto the stack
79 qqueue manage multiple patch queues
79 qqueue manage multiple patch queues
80 qrefresh update the current patch
80 qrefresh update the current patch
General Comments 0
You need to be logged in to leave comments. Login now