From ecd21ce10c2b82a851b19d502337e2ee7bcaf99a Mon Sep 17 00:00:00 2001 From: dong <1278815766@qq.com> Date: Tue, 13 May 2025 17:14:39 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0.gitignore=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E4=BB=A5=E5=BF=BD=E7=95=A5=E4=B8=8D=E5=BF=85=E8=A6=81?= =?UTF-8?q?=E7=9A=84=E6=96=87=E4=BB=B6=E5=92=8C=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加.gitignore文件以忽略IDE配置文件、构建输出、环境变量文件等,避免将这些文件提交到版本控制中,保持仓库的整洁。 --- .gitignore | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b43cbda --- /dev/null +++ b/.gitignore @@ -0,0 +1,91 @@ +/.github +/.idea +/.vs +/.vscode +/Login/.idea +/Login/.vs +/KeyAuth-Service/.idea +/Admin-Keyauth/.vs +/Admin-Keyauth/.idea + +#环境变量 +.env + +#构建删除 +/Server/Run/*.exe +/KeyAuth-Service/Run/*.exe + +# 忽略所有obj +**/obj/** + +# 已构建程序不上传 +*.exe +/Server/Run/*.exe +/KeyAuth-Service/Run/*.exe + +# IDEA +Server/.idea + +[Tt]humbs.db +*.DS_Store + +#Visual Studio files +*.[Oo]bj +*.user +*.aps +*.pch +*.vspscc +*.vssscc +*_i.c +*_p.c +*.ncb +*.suo +*.tlb +*.tlh +*.bak +*.[Cc]ache +*.ilk +*.log +*.lib +*.sbr +*.sdf +*.opensdf +*.unsuccessfulbuild +ipch/ +obj/ +[Bb]in +[Dd]ebug*/ +[Rr]elease*/ +Ankh.NoLoad + +#MonoDevelop +*.pidb +*.userprefs + +#Tooling +_ReSharper*/ +*.resharper +[Tt]est[Rr]esult* +*.sass-cache + +#Project files +[Bb]uild/ + +#Subversion files +.svn + +# Office Temp Files +~$* + +#NuGet +packages/ + +#ncrunch +*ncrunch* +*crunch*.local.xml + +# visual studio database projects +*.dbmdl + +#Test files +*.testsettings