Created
January 23, 2022 03:58
-
-
Save Mr-Bossman/2c7c45c59c49a2384505b5eba30ace55 to your computer and use it in GitHub Desktop.
Example git ignore with many binary/debug file types
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**/*.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