Skip to content

Commit

Permalink
Create .gitignore to exclude compile output like .hex, .elf and .lst …
Browse files Browse the repository at this point in the history
…files
  • Loading branch information
Virtual-Java committed Oct 3, 2021
1 parent 00edb20 commit 5e3d263
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Ignore compiled output files
/optiboot/bootloaders/optiboot/*.elf # exclude .elf files
/optiboot/bootloaders/optiboot/*.hex # exclude .hex files
/optiboot/bootloaders/optiboot/*.lst # exclude .lst files
/optiboot/bootloaders/optiboot/*.tmp* # exclude .tmp files

# Ignore additional hexfiles
/optiboot/hexfiles/* # exclude additional hexfiles
!/optiboot/hexfiles/legacy/* # include a few legacy hexfiles

0 comments on commit 5e3d263

Please sign in to comment.