From a46f1a6334793bf529692096b3e0972e3f884965 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 25 Nov 2007 09:52:04 +0100 Subject: [PATCH] Push and pop don't have --to flags anymore MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: Karl Hasselström Signed-off-by: Karl Hasselström --- stgit/commands/goto.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/stgit/commands/goto.py b/stgit/commands/goto.py index 7f9d45d..84b840b 100644 --- a/stgit/commands/goto.py +++ b/stgit/commands/goto.py @@ -27,9 +27,8 @@ help = 'push or pop patches to the given one' usage = """%prog [options] Push/pop patches to/from the stack until the one given on the command -line becomes current. This is a shortcut for the 'push --to' or 'pop ---to' commands. There is no '--undo' option for 'goto'. Use the 'push' -command for this.""" +line becomes current. There is no '--undo' option for 'goto'. Use the +'push --undo' command for this.""" directory = DirectoryGotoToplevel() options = [make_option('-k', '--keep', -- [mdw]