mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 08:02:08 +02:00
🌐 git-format-patch: add Spanish translation
This commit is contained in:
parent
596e1a1064
commit
272112f472
1 changed files with 17 additions and 0 deletions
17
pages.es/common/git-format-patch.md
Normal file
17
pages.es/common/git-format-patch.md
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# git format-patch
|
||||||
|
|
||||||
|
> Prepara archivos .patch. Es útil cuando se envían commits por correo electrónico.
|
||||||
|
> Véase también `git-am`, comando que puede aplicar los archivos .patch generados.
|
||||||
|
> Más información: <https://git-scm.com/docs/git-format-patch>.
|
||||||
|
|
||||||
|
- Crea un archivo .patch con nombre automático para todos los cambios que no están en el push:
|
||||||
|
|
||||||
|
`git format-patch {{origen}}`
|
||||||
|
|
||||||
|
- Escribe un archivo .patch para todos los commits entre dos revisiones a `stdout`:
|
||||||
|
|
||||||
|
`git format-patch {{revisión_1}}..{{revisión_2}}`
|
||||||
|
|
||||||
|
- Escribe un archivo .patch para los 3 últimos commits:
|
||||||
|
|
||||||
|
`git format-patch -{{3}}`
|
Loading…
Add table
Reference in a new issue