diff --git a/git-flow b/git-flow index 956ce36..4b6a12b 100755 --- a/git-flow +++ b/git-flow @@ -299,6 +299,10 @@ def parse_url(url: str) -> list[str]: else: raise RuntimeError("Invalid url: " + url) + # Esto permite utilizar un Host ficticio si tenemos 2 cuentas de bitbucket (personal y trabajo) + if service.endswith(".bitbucket.org"): + service = "bitbucket.org" + return [service, repository]