15 lines
178 B
Plaintext
15 lines
178 B
Plaintext
# Ignore everything
|
|
*
|
|
|
|
# But not directories (so git can traverse into them)
|
|
!*/
|
|
|
|
# Allow these file types
|
|
!*.py
|
|
!*.txt
|
|
!*.md
|
|
!*.sh
|
|
|
|
# Don't ignore .gitignore itself
|
|
!.gitignore
|