aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/commands/clone.py
diff options
context:
space:
mode:
Diffstat (limited to 'MgaRepo/commands/clone.py')
-rw-r--r--MgaRepo/commands/clone.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/MgaRepo/commands/clone.py b/MgaRepo/commands/clone.py
index 589ec75..86793c9 100644
--- a/MgaRepo/commands/clone.py
+++ b/MgaRepo/commands/clone.py
@@ -20,6 +20,7 @@ Options:
-b The package branch
-M Do not use the mirror (use the main repository)
-h Show this message
+ -F Do not convert svn usernames to full name & email
Examples:
repsys clone pkgname
@@ -33,6 +34,8 @@ def parse_options():
parser = OptionParser(help=HELP)
parser.add_option("--distribution", "-d", dest="distro", default=None)
parser.add_option("--branch", "-b", dest="branch", default=None)
+ parser.add_option("-F", dest="fullnames", default=True,
+ action="store_false")
opts, args = parser.parse_args()
if len(args) not in (1, 2):
raise Error("invalid arguments")