mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-09-01 15:51:29 +08:00
556 B
556 B
git format-patch
Préparer des fichiers de correctifs, utiles pour les envoyer par courriel. Voir aussi :
git am. Plus d'informations : https://git-scm.com/docs/git-format-patch.
- Créer un fichier de correctif
.patchnommé automatiquement pour tout les commits non poussés :
git format-patch {{origin}}
- Créer un fichier correctif
.patchpour les changements entre 2 révisions :
git format-patch {{revision_1}}..{{revision_2}}
- Créer un fichier correctif
.patchpour les 3 derniers commits :
git format-patch -{{3}}