mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
🌐 git-fetch: add Spanish translation
This commit is contained in:
parent
e566632a1a
commit
596e1a1064
1 changed files with 24 additions and 0 deletions
24
pages.es/common/git-fetch.md
Normal file
24
pages.es/common/git-fetch.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# git fetch
|
||||||
|
|
||||||
|
> Descarga objetos y referencias de un repositorio remoto.
|
||||||
|
> Más información: <https://git-scm.com/docs/git-fetch>.
|
||||||
|
|
||||||
|
- Recibe los últimos cambios del repositorio remoto upstream por defecto (si se ha establecido):
|
||||||
|
|
||||||
|
`git fetch`
|
||||||
|
|
||||||
|
- Recibe las ramas nuevas de un repositorio remoto upstream específico:
|
||||||
|
|
||||||
|
`git fetch {{remote_name}}`
|
||||||
|
|
||||||
|
- Recibe los últimos cambios de todos los repositorios remotos upstream:
|
||||||
|
|
||||||
|
`git fetch --all`
|
||||||
|
|
||||||
|
- Recibe también las etiquetas de un repositorio upstream:
|
||||||
|
|
||||||
|
`git fetch --tags`
|
||||||
|
|
||||||
|
- Elimina las referencias locales a ramas remotas que han sido eliminadas de upstream:
|
||||||
|
|
||||||
|
`git fetch --prune`
|
Loading…
Add table
Reference in a new issue