feature: agregando descripcion a ejecucion de comandos importantes en new, tag y merge

This commit is contained in:
jt
2025-11-22 12:02:39 -03:00
parent faea8c2d2a
commit 4135a789e3
3 changed files with 21 additions and 17 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ class NewCommand(Command):
new_branch = self._get_unique_branch_name(branch_type)
if self.confirm(f"¿Crear rama '{new_branch}' sobre la rama actual?"):
Git("switch", new_branch, create=True).exec()
Git("switch", new_branch, create=True).exec(print="Creando nueva rama")
def _get_unique_branch_name(self, branch_type: str) -> str:
self.info(