From da2469b39e386184e09074c8f349f9aeaac1228e Mon Sep 17 00:00:00 2001 From: ronalds Date: Thu, 27 Nov 2025 01:29:01 -0300 Subject: [PATCH] =?UTF-8?q?v1.0.63=20Backend=20/=20v1.0.57=20Frontend=20-?= =?UTF-8?q?=20Edici=C3=B3n=20y=20auditor=C3=ADa=20de=20preguntas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker.ps1 | 0 gitUpdate.ps1 | 17 ++++++++++++++--- 2 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 docker.ps1 diff --git a/docker.ps1 b/docker.ps1 new file mode 100644 index 0000000..e69de29 diff --git a/gitUpdate.ps1 b/gitUpdate.ps1 index 9808d5b..be75224 100644 --- a/gitUpdate.ps1 +++ b/gitUpdate.ps1 @@ -1,9 +1,20 @@ Clear-Host -# Pedir mensaje de commit -$mensaje = Read-Host "Ingrese el mensaje de commit" +# Pedir mensaje de commit (con soporte para saltos de lĂ­nea) +Write-Host "Ingrese el mensaje de commit (presione Enter dos veces para finalizar):" +Write-Host "" -Write-Host "Agregando archivos..." +$lineas = @() +do { + $linea = Read-Host + if ($linea -ne "") { + $lineas += $linea + } +} while ($linea -ne "") + +$mensaje = $lineas -join "`n" + +Write-Host "`nAgregando archivos..." git add . Write-Host "Creando commit..."