From 8f79a6a288cf2399a096913f027854e4f68be5b5 Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Wed, 19 Nov 2025 21:02:33 -0300 Subject: [PATCH] bugfix: agrego http:// como protocolo soportado para pipelines --- src/git_flow/remote/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git_flow/remote/base.py b/src/git_flow/remote/base.py index 47edc89..24950fd 100644 --- a/src/git_flow/remote/base.py +++ b/src/git_flow/remote/base.py @@ -17,7 +17,7 @@ class RemoteAPI(ABC): if url.startswith("git@"): url_type = "ssh" - elif url.startswith("https://"): + elif url.startswith("http://") or url.startswith("https://"): url_type = "https" else: raise invalid_url_error