用来联系
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
231 B

  1. # 注释用#开头
  2. *.log # 忽略全部.log日志文件
  3. build/ # 忽略整个build编译目录
  4. !important.log # 例外:不忽略important.log(优先级最高)
  5. *.obj
  6. *.o
  7. *.slo
  8. Debug/
  9. Release/
  10. .vs/
  11. .vscode/