.gitignore 762 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # 忽略所有的文件
  2. *
  3. # 不忽略目录
  4. !*/
  5. # 指定忽略的目录名
  6. .vs/
  7. bin/
  8. out/
  9. install/
  10. build/
  11. devel/
  12. vcpkg/
  13. vcpkg_installed/
  14. /EgoServer/EgoServer/.vs
  15. /EgoServer/EgoServer/x64
  16. /EgoServer/updator/out/build
  17. /EgoServer/webrtcinterop/out/build
  18. /EgoServer/webrtcinterop/x64
  19. /EgoQt/webrtcinterop/out/build
  20. /EgoQt/.qtc_clangd
  21. /EgoQt/EgoDLL/x64
  22. /EgoQt/HttpDLL/x64
  23. # 指定不忽略文件类型
  24. !*.editorconfig
  25. !*.gitattributes
  26. !*.gitignore
  27. !*.cpp
  28. !*.hpp
  29. !*.cc
  30. !*.h
  31. !*.c
  32. !*.md
  33. !*.txt
  34. !*.ini
  35. !*.json
  36. !*.yml
  37. !*Dockerfile
  38. !*.py
  39. !*.sh
  40. !*.bash
  41. !*.bat
  42. !*.ps1
  43. # --- for ros ---
  44. !*.launch
  45. !*.action
  46. !*.msg
  47. !*.cfg
  48. !*.srv
  49. # --- for vs ---
  50. !*.vcxproj
  51. !*.sln
  52. # --- for qt ---
  53. !*.ui
  54. !*.qml
  55. !*.qrc
  56. !*.png
  57. !*.js
  58. !*.ttf
  59. !*.cmake
  60. !*.bmp
  61. !*.inc
  62. !*.wav
  63. !*.idb
  64. !*.proto