Add rules to include directories starting with "Debate_" and their contents in version control.
13 lines
177 B
Plaintext
13 lines
177 B
Plaintext
# Ignore everything
|
|
*
|
|
|
|
# Except markdown files
|
|
!*.md
|
|
|
|
# Except directories beginning with "Debate_" and their contents
|
|
!Debate_*/
|
|
!Debate_*/**
|
|
|
|
# And this gitignore
|
|
!.gitignore
|