From d56ddc941edf43b9ce1a64323e863b9efbb76f72 Mon Sep 17 00:00:00 2001 From: "jp.av.dev" Date: Thu, 16 Jul 2020 14:36:52 -0400 Subject: [PATCH] --- Comandos-Basicos-Git.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Comandos-Basicos-Git.md b/Comandos-Basicos-Git.md index 20cf4be..ba24fb1 100644 --- a/Comandos-Basicos-Git.md +++ b/Comandos-Basicos-Git.md @@ -27,6 +27,9 @@ git init git add [archivo odirectorio] git add -A (Agregar todo a confirmacion) +# Remove a file from the workspace and the index +git rm file(s)... + git commit -m "Mensaje" # add -A + Commit @@ -223,8 +226,13 @@ git remote add origin http://192.168.0.8:3000/jp.av.dev/test_repo.git ## Git ignore "Crear archivo .gitignore aƱadir archivo/carpeta/extension para ignorarlos no guardar archivos sensibles, regex, ej. .*" - - +``` +ignorar_directorio/ +dir2 +archivo_a_ignorar.txt +archivo2 +*.pdf +``` -----