##// END OF EJS Templates
mq: add correct documentation for qpop
Dirkjan Ochtman -
r6611:f4c612da default
parent child Browse files
Show More
@@ -1943,7 +1943,11 b' def push(ui, repo, patch=None, **opts):'
1943 1943 return ret
1944 1944
1945 1945 def pop(ui, repo, patch=None, **opts):
1946 """pop the current patch off the stack"""
1946 """pop the current patch off the stack
1947
1948 By default, pops off the top of the patch stack. If given a patch name,
1949 keeps popping off patches until the named patch is at the top of the stack.
1950 """
1947 1951 localupdate = True
1948 1952 if opts['name']:
1949 1953 q = queue(ui, repo.join(""), repo.join(opts['name']))
General Comments 0
You need to be logged in to leave comments. Login now