1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages.it/common/git-am.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

477 B

git am

Applica file di patch. Utile quando si ricevono commit 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}}