18 lines
270 B
Text
18 lines
270 B
Text
# Ignore everything
|
|
*
|
|
# But descend into directories
|
|
!*/
|
|
# Recursively allow files under subtree
|
|
!/Abbildungen/**
|
|
# You can be specific with these rules
|
|
!.gitignore
|
|
!*.tex
|
|
!*.bib
|
|
!*.eps
|
|
!*.md
|
|
!*.png
|
|
!*.jpg
|
|
!*.jpeg
|
|
!*.vsz
|
|
# Ignore entire folders and their content
|
|
/cache
|