From 1370e7adfd7dd9b6ef2f4630fce68d2a8608b77d Mon Sep 17 00:00:00 2001 From: Josue_Daniel <2666464@alu.murciaeduca.es> Date: Fri, 14 Nov 2025 09:39:25 +0100 Subject: [PATCH] =?UTF-8?q?docs(rama1):=20a=C3=B1adir=20descripciones=20de?= =?UTF-8?q?=20comandos=20de=20Git?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8ae6fd19..38801a4c 100644 --- a/README.md +++ b/README.md @@ -87,17 +87,20 @@ git checkout -b rama2_nombreApellido1Estudiante ``` ### 📄 Ediciones solicitadas del README + En **rama 1**, añade: ```md + ## Información técnica añadida desde rama 1 En esta sección se describen los principales comandos de Git utilizados durante la práctica: -- git init: (COMPLETAR) -- git add: (COMPLETAR) -- git commit: (COMPLETAR) -- git branch: (COMPLETAR) -- git merge: (COMPLETAR) -- git push: (COMPLETAR) +- git init: (Inicializa un repositorio Git en el directorio actual, creando la carpeta oculta `.git`.) +- git add: (Añade archivos al área de staging. Ej: `git add archivo.txt` o `git add .` para todos los cambios.) +- git commit: (Crea un commit con los cambios en el área de staging. Ej: `git commit -m "mensaje"`.) +- git branch: (Lista o maneja ramas. Ej: `git branch` (listar), `git branch nombre` (crear).) +- git merge: (Fusiona otra rama dentro de la rama actual. Ej: `git merge rama-feature`.) +- git push: (Envía commits locales al repositorio remoto. Ej: `git push origin main`.) ``` + Luego: ```bash git add README.md