diff options
author | Per Øyvind Karlsen <proyvind@moondrake.org> | 2016-08-18 07:50:00 +0200 |
---|---|---|
committer | Per Øyvind Karlsen <proyvind@moondrake.org> | 2016-08-18 07:50:00 +0200 |
commit | fe57127132dc63eab68939533ea9c070b481ef16 (patch) | |
tree | 2dbb4533b4105f7972ea2cff7778b480417e35f7 | |
parent | c5079b118d8cb8b05143bd1434d86871dfcfc2de (diff) | |
download | mgarepo-fe57127132dc63eab68939533ea9c070b481ef16.tar mgarepo-fe57127132dc63eab68939533ea9c070b481ef16.tar.gz mgarepo-fe57127132dc63eab68939533ea9c070b481ef16.tar.bz2 mgarepo-fe57127132dc63eab68939533ea9c070b481ef16.tar.xz mgarepo-fe57127132dc63eab68939533ea9c070b481ef16.zip |
update help text for clone command to reflect name changes
-rw-r--r-- | MgaRepo/commands/clone.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/MgaRepo/commands/clone.py b/MgaRepo/commands/clone.py index 86793c9..2c898d1 100644 --- a/MgaRepo/commands/clone.py +++ b/MgaRepo/commands/clone.py @@ -6,9 +6,9 @@ import getopt import sys HELP = """\ -Usage: repsys co [OPTIONS] URL [LOCALPATH] +Usage: mgarepo co [OPTIONS] URL [LOCALPATH] -Checkout the package source from the Mandriva repository. +Clone the package source from the Mageia repository. If the 'mirror' option is enabled, the package is obtained from the mirror repository. @@ -23,11 +23,11 @@ Options: -F Do not convert svn usernames to full name & email Examples: - repsys clone pkgname - repsys clone -d 2009.0 pkgname - repsys clone 2009.0/pkgame - repsys clone http://repos/svn/cnc/snapshot/foo - repsys clone http://repos/svn/cnc/snapshot/foo foo-pkg + mgarepo co pkgname + mgarepo co -d 1 pkgname + mgarepo co 1/pkgame + mgarepo co http://repos/svn/cnc/snapshot/foo + mgarepo co http://repos/svn/cnc/snapshot/foo foo-pkg """ def parse_options(): |