File tree Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Original file line number Diff line number Diff line change 1+ # .gitignore file
2+ #
3+ # Set up for Microchip/MPLAB X® development
4+ #
5+ # Default gitignore files for code examples, only removing/ignoring usual MPLAB X® clutter
6+
7+ # Excluding object files
8+ * .o
9+ * .ko
10+ * .obj
11+ * .elf
12+
13+ # Excluding documentation output directories
14+ # docs/
15+
16+ # Excluding any executables
17+ * .exe
18+
19+ # Excluding Files/Folders Auto-Generated by Test Harness
20+ .generated_files /
21+
22+ # Excluding Netbeans specific build directories and file types
23+ ~ * . *
24+ .generated_files /
25+ nbproject /build /
26+ nbproject /dist /
27+ nbproject /private /
28+ nbproject /disassembly /
29+ build /
30+ dist /
31+ private /
32+ disassembly /
33+ * .zip
34+ ! code-templates.zip
35+ * .mk
36+ * .bash
37+ * .dump
38+ Makefile-genesis.properties
39+
40+ # Excluding MPLAB X® Trace files
41+ * .log
42+ * .inx
43+
44+ # KDE specific
45+ .directory
46+
47+ # Misc
48+ .svn
49+ * .bak
50+ * .doc
51+ * .docx
52+
53+
54+
You can’t perform that action at this time.
0 commit comments