mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 17:22:10 +02:00

- Replace "al" -> "del", "alla" -> "della", etc. in command paths - Replace all instances of "cartella" with "directory" - Update contributing-guides/translation-templates/common-arguments.md to reflect these changes Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Marco Bonelli <marco@mebeim.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
25 lines
640 B
Markdown
25 lines
640 B
Markdown
# git send-email
|
|
|
|
> Invia una raccolta di patch via email.
|
|
> Le patch possono essere specificate come file, directory, o liste di revisione.
|
|
> Maggiori informazioni: <https://git-scm.com/docs/git-send-email>.
|
|
|
|
- Invia l'ultimo commit nel ramo corrente:
|
|
|
|
`git send-email -1`
|
|
|
|
- Invia un commit specifico:
|
|
|
|
`git send-email -1 {{commit}}`
|
|
|
|
- Invia 10 commit nel ramo corrente:
|
|
|
|
`git send-email {{-10}}`
|
|
|
|
- Invia un'email con un messaggio introduttivo alla serie di patch:
|
|
|
|
`git send-email -{{numero_di_commit}} --compose`
|
|
|
|
- Revisiona e modifica il messaggio email per ogni patch da inviare:
|
|
|
|
`git send-email -{{numero_di_commit}} --annotate`
|