jp.av.dev 2020-07-16 14:36:52 -04:00
parent f5c2b1cf70
commit d56ddc941e

@ -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
```
-----