Skip to content
Snippets Groups Projects
.gitignore 261 B
Newer Older
# ignore all
*

# Unignore all with extensions
!*.*

Tony Zorman's avatar
Tony Zorman committed
# Uningnore directories
!*/

# Unignore Makefiles
!Makefile
!makefile

### Above combination will ignore all files without extension ###

# Ignore files with extension `.o` & `.mod` &  `.out`
*.o
*.mod
*.out