18 lines
197 B
Plaintext
18 lines
197 B
Plaintext
# 忽略所有文件
|
|
*
|
|
|
|
# 不忽略目录
|
|
!*/
|
|
|
|
# 不忽略这些文件和文件类型
|
|
!.gitignore
|
|
!README.md
|
|
!LICENSE
|
|
!**/*.c
|
|
!**/*.h
|
|
!**/*.md
|
|
!**/makefile
|
|
!**/Makefile
|
|
!**/*.csv
|
|
!**/.clang-format
|