From 50ac6cf749851daa77d3d3d064d74b529354f1cd Mon Sep 17 00:00:00 2001 From: Aditya Bisoi Date: Jun 07 2021 07:08:34 +0000 Subject: Improve help in fedpkg clone command JIRA: RHELCMP-140 Resolves: pagure #367 Signed-off-by: Aditya Bisoi --- diff --git a/pyrpkg/cli.py b/pyrpkg/cli.py index c9e3114..0f114da 100644 --- a/pyrpkg/cli.py +++ b/pyrpkg/cli.py @@ -656,7 +656,12 @@ class cliClient(object): # store the module to be cloned clone_parser.add_argument( 'repo', nargs=1, type=validator_not_url, - help='Name of the repository to clone') + help="Name of the repository to clone. " + "It should not be a Git URL. " + "Should be 'namespace/repo-name' in case of namespaced dist-git. " + "Otherwise, just 'repo-name'. " + "Namespace examples are 'rpms', 'container', 'modules', 'flatpaks'. " + "Default namespace 'rpms' can be ignored. ") # Eventually specify where to clone the module clone_parser.add_argument( "clone_target", default=None, nargs="?",