tldr/pages.fr/common/git-am.md

18 lines
539 B
Markdown
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

# git am
> Appliaquer des fichiers de path. Utile lorsque l on recoit des comits par email.
> Voir aussi `git format-patch`, pour generer des ficheirs de patch.
> Plus d'informations : <https://git-scm.com/docs/git-am>.
- Appliquer un fichier de patch :
`git am {{chemin/vers/fichier.patch}}`
- Annuler l'application d un fichier de patch :
`git am --abort`
- Appliquer autant de fichier de correctif que possible, en enregistrant les morceaux échoués pour rejeter le fichier :
`git am --reject {{chemin/vers/fichier.patch}}`