commit 5db81fd1b89f0d35835bbd19c28639840c23b73c Author: HuangHai <10402852@qq.com> Date: Wed Sep 10 09:16:58 2025 +0800 'commit' diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..a7cdac7 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/YunNanProject.iml b/.idea/YunNanProject.iml new file mode 100644 index 0000000..06e39e4 --- /dev/null +++ b/.idea/YunNanProject.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..03d9549 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..8fcd156 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..2b6e8a5 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/内网GIT提交.cmd b/内网GIT提交.cmd new file mode 100644 index 0000000..6e05645 --- /dev/null +++ b/内网GIT提交.cmd @@ -0,0 +1,13 @@ +@echo off +del /q "d:\dsWork\dsProject\.git\config" +copy "d:\dsWork\dsProject\Doc\config-in-network" "d:\dsWork\dsProject\.git\config" + +git config --global core.autocrlf false +git add -A . +git commit -am 'commit' +git pull +git push origin main + + + + diff --git a/外网GIT提交.cmd b/外网GIT提交.cmd new file mode 100644 index 0000000..5e59388 --- /dev/null +++ b/外网GIT提交.cmd @@ -0,0 +1,11 @@ +@echo off +del /q "d:\dsWork\dsProject\.git\config" +copy "d:\dsWork\dsProject\Doc\config-out-network" "d:\dsWork\dsProject\.git\config" + +git config --global core.autocrlf false +git add -A . +git commit -am 'commit' +git pull +git push origin main + +