.gitignore for Microchip MPLAB X IDE
10 ignore rules for Microchip MPLAB X IDE, ready to copy into your repository.
Microchip IDE for PIC and AVR microcontrollers
The complete .gitignore for 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
What these Microchip MPLAB X IDE rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
MPLAB X (NetBeans) Project files
| Pattern | What it ignores |
|---|---|
**/*.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
| Pattern | What it ignores |
|---|---|
**/*.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)
| Pattern | What it ignores |
|---|---|
**/*.X/mcc_generated_files/ |
MPLAB Code Configurator output |
**/*.X/mcc-manifest-*.yml |
MPLAB Code Configurator (MCC) |
How to use this .gitignore for Microchip MPLAB X IDE
- Copy the Microchip MPLAB X IDE rules above, or download the file directly.
- Create a file named .gitignore at the root of your Git repository and paste the rules into it.
- If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
- Commit the .gitignore so everyone on the team shares the same rules.