commit ccaffc1014085007c164152b57fc8ce02006e040 Author: terry.wang <32783747@qq.com> Date: Wed Nov 26 17:18:57 2025 +0800 添加.gitignore,排除.vs、bin、obj目录 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed82d0c --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# 排除Visual Studio的.vs隐藏文件夹(包含项目配置、缓存等) +.vs/ + +# 排除所有bin目录(编译后的二进制文件目录) +bin/ + +# 排除所有obj目录(编译后的中间对象文件目录) +obj/ + +# 可选:补充Visual Studio常见的其他临时文件/目录(按需添加) +*.suo +*.user +*.userosscache +*.sln.docstates \ No newline at end of file