在我的文件夹中,有很多带有*.c, *.h, *.txt, *.csv扩展名的文件和没有任何扩展名的二进制文件。因此,我需要忽略所有文件execpt *.c,*.h和.gitignore,因此对我来说,这对.gitignore示例有效: */* #ignore all files in each directory !*/*.c #unignore .c files in each directory !*/*.h #unignore .h header files in each directory !.gitignore #unignore .gitignore