13 lines
168 B
Plaintext
13 lines
168 B
Plaintext
# Ignore all files
|
|
*
|
|
|
|
# Unignore directories (needed so git can look inside)
|
|
!*/
|
|
|
|
# Only track .cs and .md files
|
|
!*.cs
|
|
!*.md
|
|
|
|
# And the gitignore itself
|
|
!.gitignore
|