Compare commits

...

2 Commits

Author SHA1 Message Date
祀梦
190a0a4cdb ci(script): 添加临时禁用Git SSL验证并清理.gitignore
修改build-and-publish.bat脚本临时禁用Git SSL验证以提高兼容性
清理.gitignore文件,移除不再需要的资源路径并优化注释结构
2026-01-09 09:59:32 +08:00
祀梦
c0a061463b chore: 删除_publish子模块
不再需要该子模块,因此从代码库中移除
2026-01-09 09:59:24 +08:00
3 changed files with 9 additions and 15 deletions

19
.gitignore vendored
View File

@@ -7,21 +7,12 @@ docs/.vuepress/dist
.trae/
.DS_Store
*.log
# Assets in public directory
docs/.vuepress/public/images/**
docs/.vuepress/public/life/**
docs/.vuepress/public/videos/**
# Local resources storage
# Build and Publish output
_publish/
# Local resources storage (not uploaded)
resources/
# Allow specific used assets
!docs/.vuepress/public/images/elysia/
!docs/.vuepress/public/images/elysia/1.jpg
!docs/.vuepress/public/images/elysia/2.png
!docs/.vuepress/public/images/elysia/3.jpg
!docs/.vuepress/public/images/elysia/4.jpg
!docs/.vuepress/public/images/elysia/5.jpg
!docs/.vuepress/public/images/elysia/6.jpg
!docs/.vuepress/public/plume.svg
# Ensure .gitkeep files are always tracked
!**/.gitkeep

Submodule _publish deleted from 03895a18b9

View File

@@ -20,6 +20,10 @@ set "BRANCH=main"
REM High memory limit for better performance/stability (8GB)
set "NODE_OPTIONS=--max-old-space-size=8192"
REM Disable Git SSL Verification for this session
git config --global http.sslVerify false
git config --global http.sslBackend openssl
REM Args
set "COMMIT_MSG=%~1"
if "%COMMIT_MSG%"=="" set "COMMIT_MSG=Build: %DATE% %TIME%"