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.
 
 
 

11 lines
339 B

# 排除单个文件夹
bin/ # 排除 bin 文件夹及其所有内容
obj/ # 排除 obj 文件夹(Visual Studio 临时文件)
.vs/ # 排除 Visual Studio 解决方案特定文件
# 排除特定类型的文件
*.log # 排除所有 .log 文件
*.user # 排除 Visual Studio 用户配置文件
# 排除特定路径下的文件
app/secrets/ # 排除 app/secrets 文件夹