From a8032a85059af6e000e6ec958e4d1aa9d1b5db4d Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Wed, 7 Dec 2005 20:48:32 -0500 Subject: [PATCH] Add a brief sentence to the documentation of the "stg branch" command. Organization: Straylight/Edgeware From: Chuck Lever Add a sentence explaining the default behavior of the "stg branch" command. Idea by J. Bruce Fields. Signed-off-by: Chuck Lever --- stgit/commands/branch.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stgit/commands/branch.py b/stgit/commands/branch.py index 860d7d5..6a551e4 100644 --- a/stgit/commands/branch.py +++ b/stgit/commands/branch.py @@ -35,7 +35,9 @@ is always created in a new repository. This subcommand allows you to manage several patch series in the same repository via GIT branches. When displaying the branches, the names can be prefixed with -'s' (StGIT managed) or 'p' (protected).""" +'s' (StGIT managed) or 'p' (protected). + +If not given any options, switch to the named branch.""" options = [make_option('-c', '--create', help = 'create a new development branch', -- [mdw]