1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-30 02:17:56 +01:00
tldr/pages.it/common/git-am.md
Guido Lena Cota 4ee919925d git-commands: add Italian translations (#3318)
Add Italian translation for:

 - git
 - git-add
 - git-am
 - git-bisect
 - git-blame
 - git-branch
 - git-check-ignore
 - git-checkout
 - git-cherry-pick
 - git-clean
2019-10-06 13:25:30 +02:00

476 B

git am

Applica file di patch. Utile quando si ricevono commits via email. Vedi anche git format-patch per generare file di patch. Maggiori informazioni: https://git-scm.com/docs/git-am.

  • Applica un file di patch:

git am {{percorso/al/file.patch}}

  • Interrompi l'applicazione di un file di patch:

git am --abort

  • Applica quanto possibile di un file di patch, salvando le parti non applicabili in file .rej:

git am --reject {{percorso/al/file.patch}}