From b8038cef20f401a08a38cb49f31be4bbef7013e0 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Tue, 8 Jan 2008 21:43:53 +0100 Subject: [PATCH] Don't mention removed "stg refresh" options MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: Peter Oberndorfer Change usage string of refresh to not refer to removed options for changing the patch author, commiter and description. Signed-off-by: Peter Oberndorfer Signed-off-by: Karl Hasselström --- stgit/commands/refresh.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/stgit/commands/refresh.py b/stgit/commands/refresh.py index 6e8ed0c..6288acc 100644 --- a/stgit/commands/refresh.py +++ b/stgit/commands/refresh.py @@ -31,11 +31,9 @@ usage = """%prog [options] [] Include the latest tree changes in the current patch. This command generates a new GIT commit object with the patch details, the previous -one no longer being visible. The patch attributes like author, -committer and description can be changed with the command line -options. The '--force' option is useful when a commit object was -created with a different tool but the changes need to be included in -the current patch.""" +one no longer being visible. The '--force' option is useful +when a commit object was created with a different tool +but the changes need to be included in the current patch.""" directory = DirectoryHasRepository() options = [make_option('-f', '--force', -- [mdw]