blob: 526f606db3937f8810edb4ec50a44e382c304f18 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# ignore all, then unignore all with extensions, then unignore all dirs
# below three lines will ignore all files without extension
# https://stackoverflow.com/questions/5711120/gitignore-binary-files-that-have-no-extension
*
!*.*
!*/
*.exe
*.log
*.o
|