From 50979e2c3d5cd16862ab5a3fbc4d53699de3ca1d Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Fri, 28 Nov 2025 15:42:54 -0300 Subject: [PATCH 1/3] docs: agrego venv a lista de carpetas ignoradas --- .gitignore | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7a5bee5..5718d26 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,11 @@ +# Bitbucket token .repository-token -**/__pycache__/ -build/ -**/*.egg-info/ +# Virtual environment +venv/ + +# Build folders and artifacts dist/ +build/ +**/__pycache__/ +**/*.egg-info/ From 5c3a3171fde5a54704dc3e7b83b0b9c12c550cbd Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Fri, 28 Nov 2025 15:43:46 -0300 Subject: [PATCH 2/3] bugfix: arreglo iteracion de items de flowconfig en set_config --- src/git_flow/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git_flow/git.py b/src/git_flow/git.py index d3392a7..11e23ff 100644 --- a/src/git_flow/git.py +++ b/src/git_flow/git.py @@ -38,7 +38,7 @@ class Git: @staticmethod def set_config(config: dict[str, str], file: str | None = None): - for key, value in config: + for key, value in config.items(): Git("config", key, value, file=file).exec() @staticmethod From 2ad747111fb54cdc4b5008ed50275ac583e6ed89 Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Fri, 28 Nov 2025 15:44:05 -0300 Subject: [PATCH 3/3] bugfix: arreglo split de ramas de flow.branches --- 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 efc5c08..2e51eee 100644 --- a/src/git_flow/command/base.py +++ b/src/git_flow/command/base.py @@ -170,7 +170,7 @@ class Command(ABC): def get_branch_env_and_type(self, branch: str) -> tuple[str, str]: components = branch.split("/") - target_branches = self.flowconfig["flow.branches"].split(" ") + target_branches = self.flowconfig["flow.branches"].split(",") if len(components) == 2: if components[0] not in BRANCH_TYPES: