mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
git-format-patch: add Italian translation.
Co-authored-by: Guido Lena Cota <guido.lenacota@kreuzwerker.de>
This commit is contained in:
parent
c14f06d0e3
commit
99e35b2a2c
1 changed files with 17 additions and 0 deletions
17
pages.it/common/git-format-patch.md
Normal file
17
pages.it/common/git-format-patch.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# git format-patch
|
||||
|
||||
> Prepara file .patch. Utile per l'invio di commit via email.
|
||||
> Vedi anche `git am`, che permette di applicare file .patch.
|
||||
> Maggiori informazioni: <https://git-scm.com/docs/git-format-patch>.
|
||||
|
||||
- Crea un file .patch (il nome è assegnato automaticamente) con i commit non ancora inviati al repository remoto:
|
||||
|
||||
`git format-patch {{origin}}`
|
||||
|
||||
- Scrivi su `stdout` un file .patch per l'intervallo di commit definito dai due commit dati:
|
||||
|
||||
`git format-patch --stdout {{commit_1}}..{{commit_2}}`
|
||||
|
||||
- Scrivi un file .patch per gli ultimi 3 commit:
|
||||
|
||||
`git format-patch -{{3}}`
|
Loading…
Add table
Reference in a new issue