From 06e556d202cc6944227667a0664ec7b8eca32076 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Sat, 18 Apr 2009 11:19:01 -0700 Subject: [PATCH] Improve the help text for 'repo start' Signed-off-by: Shawn O. Pearce --- subcmds/start.py | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/subcmds/start.py b/subcmds/start.py index deced7c..d30949f 100644 --- a/subcmds/start.py +++ b/subcmds/start.py @@ -22,20 +22,10 @@ class Start(Command): helpSummary = "Start a new branch for development" helpUsage = """ %prog [...] - -This subcommand starts a new branch of development that is automatically -pulled from a remote branch. - -It is equivalent to the following git commands: - -"git branch --track m/", -or -"git checkout --track -b m/". - -All three forms set up the config entries that repo bases some of its -processing on. Use %prog or git branch or checkout with --track to ensure -the configuration data is set up properly. - +""" + helpDescription = """ +'%prog' begins a new branch of development, starting from the +revision specified in the manifest. """ def Execute(self, opt, args):