1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:22:08 +02:00
tldr/pages.es/common/git-lfs.md
Ignacio Mattos 8939f2e0eb
git-*: sync Spanish translation (#5893)
* git-config: sync Spanish translation

* git-lfs: sync Spanish translation

* git-log: sync Spanish translation

* git-remote: sync Spanish translation

* git-restore: sync Spanish translation

* git-show: sync Spanish translation

* git-status: sync Spanish translation

* git-switch: sync Spanish translation
2021-05-04 13:18:41 -04:00

36 lines
812 B
Markdown

# git lfs
> Trabaja con archivos grandes en repositorios de 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}}`
- Trae todos los objetos de Git LFS:
`git lfs fetch`
- Verifica todos los objetos de Git LFS:
`git lfs checkout`