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

* git-send-email: add it translation * git-shortlog: add it translation * git-show-branch: add it translation * git-show-ref: add it translation * git-show: add it translation * git-svn: add it translation * git-sizer: add it translation * git-stage: add it translation * git-status: add it translation * git-stash: add it translation * git-submodule: add it translation * git-subtree: add it translation * git-switch: add it translation * git-tag: add it translation * git-update-ref: add it translation * git-worktree: add it translation * Use snake case for tokens
25 lines
639 B
Markdown
25 lines
639 B
Markdown
# git send-email
|
|
|
|
> Invia una raccolta di patch via email.
|
|
> Le patch possono essere specificate come file, cartelle, 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`
|