From 8f0d430058a5133dc0828768b4b004a40425a99a Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Mon, 21 Apr 2025 13:43:22 +0200 Subject: [PATCH] Added --clone-mode parameter --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 763099b..99e68c0 100755 --- a/main.py +++ b/main.py @@ -140,6 +140,7 @@ For detailed help on each command, use: update_parser.add_argument("-q", "--quiet", action="store_true", help="Suppress warnings and info messages") update_parser.add_argument("--no-verification", action="store_true", default=False, help="Disable verification via commit/gpg") update_parser.add_argument("--dependencies", action="store_true", help="Also pull and update dependencies") + update_parser.add_argument("--clone-mode", choices=["ssh", "https"], default="ssh", help="Specify the clone mode (default: ssh)") status_parser = subparsers.add_parser("status", help="Show status for repository/repositories or system") add_identifier_arguments(status_parser)