1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 00:02:07 +02:00
tldr/pages.it/common/git-send-email.md
Guido Lena Cota d8f628d005
git*: add Italian translation (#4737)
* 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
2020-11-03 08:49:29 +01:00

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`