feature: agrego comando branch para listar ramas

This commit is contained in:
jt
2025-11-23 18:50:00 -03:00
parent eafb3f1b31
commit c74f1a3093
2 changed files with 81 additions and 0 deletions
+2
View File
@@ -5,6 +5,7 @@ from argparse import Namespace, ArgumentParser
from git_flow import GitFlowError
from git_flow.command.base import Command
from git_flow.command.branch import BranchCommand
from git_flow.command.commit import CommitCommand
from git_flow.command.init import InitCommand
from git_flow.command.merge import MergeCommand
@@ -70,6 +71,7 @@ def main():
MergeCommand(),
TagCommand(),
ReleaseCommand(),
BranchCommand()
)
try:
command.run()