Skip to content

Instantly share code, notes, and snippets.

@Mr-Bossman
Created January 23, 2022 03:58
Show Gist options
  • Save Mr-Bossman/2c7c45c59c49a2384505b5eba30ace55 to your computer and use it in GitHub Desktop.
Save Mr-Bossman/2c7c45c59c49a2384505b5eba30ace55 to your computer and use it in GitHub Desktop.
Example git ignore with many binary/debug file types
**/*.log
**/*.o
**/*.d
**/*.so
**/*.a
**/*.bin
**/*.hex
**/*.elf
**/*.axf
**/*.exe
**/*.dll
**/*.srec
**/*.lss
**/*.eep
**/*.dylib
**/*.map
**/*.tmp
**/*.lib
**/*.ilk
**/*.dat
**/*.pdb
**/*.jar
**/*.su
**/*.cmd
**/*.old
**/*.sym
**/*.class
**/[^\.]* # any no extension files
**/.* # any hidden files
!**/Makefile
!**/makefile
!**/gradlew
!**/*defconfig
!**/*config
!**/*config*
!**/config*
!**/README
!**/readme
!**/Readme
!**/LICENSE
!**/License
!**/license
!**/LICENSE*
!**/License*
!**/license*
!**/rust-toolchain
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment