| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | 
							- # 忽略所有的文件
 
- *
 
- # 不忽略目录
 
- !*/
 
- # 指定忽略的文件和目录
 
- /ZJ_PRO/EgoSystem/build/.cmake
 
- /ZJ_PRO/EgoSystem/build/CMakeFiles
 
- /ZJ_PRO/EgoSystem/build/CheckEx.sh
 
- /ZJ_PRO/EgoSystem/build/cmake_install.cmake
 
- /ZJ_PRO/EgoSystem/build/CMakeCache.txt
 
- /ZJ_PRO/EgoSystem/build/compile_commands.json
 
- /ZJ_PRO/EgoSystem/build/new.json
 
- /ZJ_PRO/webrtcinterop/build
 
- # 指定不忽略文件类型
 
- !*.editorconfig
 
- !*.gitattributes
 
- !*.gitignore
 
- !*.md
 
- !*.txt
 
- !*.sh
 
- !*.bash
 
- !*.yml
 
- !*Dockerfile
 
- !*.py
 
- !*.cpp
 
- !*.hpp
 
- !*.cc
 
- !*.h
 
- !*.c
 
- # --- for qt ---
 
- !*.json
 
- !*.dll
 
- !*.lib
 
- !*.proto
 
- !*.qml
 
- !*.qrc
 
- !*.png
 
- !*.js
 
- !*.ttf
 
- !*.cmake
 
- !*.sln
 
- !*.bmp
 
- !*.pro
 
- !*.vcxproj
 
- !*.inc
 
- !*.wav
 
- !*.idb
 
- !*.a
 
 
  |