1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 15:33:50 +02:00

git-lfs: add Spanish translation

This commit is contained in:
ivanhercaz 2020-01-17 19:58:40 +00:00 committed by Iván Hernández Cazorla
parent 338abd942f
commit 9126de2e80

View file

@ -0,0 +1,28 @@
# git lfs
> Herramienta para trabajar con archivos grandes en repositorios git.
> Más información: <https://git-lfs.github.com>.
- Inicializa Git LFS:
`git lfs install`
- Rastrea archivos que coinciden con un patrón:
`git lfs track '{{*.bin}}'`
- Cambia la URL a la que apunta Git LFS (útil si el servidor LFS está separado del servidor git):
`git config -f .lfsconfig lfs.url {{url_del_punto_de_acceso_LFS}}`
- Muestra los patrones rastreados:
`git lfs track`
- Muestra los archivos que han sido añadidos con un commit:
`git lfs ls-files`
- Introduce todos los objetos LFS en el servidor remoto (útil si se encuentran errores):
`git lfs push --all {{nombre_remoto}} {{nombre_de_la_rama}}`