.gitignore pour Microchip MPLAB X IDE
10 règles d’exclusion pour Microchip MPLAB X IDE, prêtes à copier dans votre dépôt.
IDE Microchip pour microcontrôleurs PIC et AVR
Le .gitignore complet pour Microchip MPLAB X IDE
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-09-17 18:11:20 UTC
# Technologies: Microchip MPLAB X IDE
### Microchip MPLAB X IDE ###
# MPLAB X private project settings
**/*.X/nbproject/private/
**/*.X/nbproject/Makefile-*
**/*.X/nbproject/Package-*
!**/*.X/nbproject/*.xml
**/*.X/.generated_files/
**/*.X/build/
**/*.X/dist/
**/*.X/debug/
# MPLAB Code Configurator output
**/*.X/mcc_generated_files/
**/*.X/mcc-manifest-*.yml
Ce que ces règles Microchip MPLAB X IDE ignorent vraiment
Chaque motif ci-dessous, et pourquoi il a sa place dans votre .gitignore.
MPLAB X (NetBeans) Project files
| Motif | Ce qu’il ignore |
|---|---|
**/*.X/nbproject/private/ |
MPLAB X private project settings |
**/*.X/nbproject/Makefile-* |
MPLAB X (NetBeans) Project files |
**/*.X/nbproject/Package-* |
MPLAB X (NetBeans) Project files |
!**/*.X/nbproject/*.xml |
MPLAB X (NetBeans) Project files |
MPLAB X Generated Files and Build Output
| Motif | Ce qu’il ignore |
|---|---|
**/*.X/.generated_files/ |
MPLAB X Generated Files and Build Output |
**/*.X/build/ |
MPLAB X Generated Files and Build Output |
**/*.X/dist/ |
MPLAB X Generated Files and Build Output |
**/*.X/debug/ |
MPLAB X Generated Files and Build Output |
MPLAB Code Configurator (MCC)
| Motif | Ce qu’il ignore |
|---|---|
**/*.X/mcc_generated_files/ |
MPLAB Code Configurator output |
**/*.X/mcc-manifest-*.yml |
MPLAB Code Configurator (MCC) |
Comment utiliser ce .gitignore pour Microchip MPLAB X IDE
- Copiez les règles Microchip MPLAB X IDE ci-dessus, ou téléchargez directement le fichier.
- Créez un fichier nommé .gitignore à la racine de votre dépôt Git et collez-y les règles.
- Si certains de ces fichiers sont déjà suivis, lancez git rm -r --cached . puis recommitez — Git n’applique les règles d’exclusion qu’aux fichiers non suivis.
- Commitez le .gitignore pour que toute l’équipe partage les mêmes règles.