From f9dddbc4d6910c0e138a45045a669234c59123e3 Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Wed, 8 Jul 2026 21:20:43 -0300 Subject: [PATCH] bugfix: agregar schema a host de gitea api --- src/git_flow/command/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git_flow/command/base.py b/src/git_flow/command/base.py index bc7770d..00aadca 100644 --- a/src/git_flow/command/base.py +++ b/src/git_flow/command/base.py @@ -118,7 +118,7 @@ def get_remote_api(token: str) -> RemoteAPI: [host, repository] = RemoteAPI.parse(flowconfig["flow.remote"]) if remote_type == "gitea": - return GiteaRemoteAPI(host, repository, token) + return GiteaRemoteAPI("https://" + host, repository, token) elif remote_type == "bitbucket": return BitbucketRemoteAPI(repository, token) elif remote_type == "github":