mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 09:42:07 +02:00

* pages*: remove bold and italic styling * Update pages/common/strings.md Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * pages.*: update outdated pages * Update conky.md Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
16 lines
476 B
Markdown
16 lines
476 B
Markdown
# git pull
|
|
|
|
> Obtiene rama de un repositorio remoto y lo fusiona con el repositorio local.
|
|
> Más información: <https://git-scm.com/docs/git-pull>.
|
|
|
|
- Descarga cambios del repositorio remoto por defecto y lo fusiona:
|
|
|
|
`git pull`
|
|
|
|
- Descarga cambios del repositorio remoto por defecto y usa avance rápido (fast forward):
|
|
|
|
`git pull --rebase`
|
|
|
|
- Descarga cambios de un repositorio remoto y una rama específica para fusionarlos en HEAD:
|
|
|
|
`git pull {{nombre_remoto}} {{rama}}`
|