From 5db81fd1b89f0d35835bbd19c28639840c23b73c Mon Sep 17 00:00:00 2001 From: HuangHai <10402852@qq.com> Date: Wed, 10 Sep 2025 09:16:58 +0800 Subject: [PATCH] 'commit' --- .idea/.gitignore | 8 ++++++++ .idea/YunNanProject.iml | 8 ++++++++ .idea/inspectionProfiles/Project_Default.xml | 6 ++++++ .idea/inspectionProfiles/profiles_settings.xml | 6 ++++++ .idea/misc.xml | 4 ++++ .idea/modules.xml | 8 ++++++++ 内网GIT提交.cmd | 13 +++++++++++++ 外网GIT提交.cmd | 11 +++++++++++ 8 files changed, 64 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/YunNanProject.iml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 内网GIT提交.cmd create mode 100644 外网GIT提交.cmd 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 + +