# 1. 添加所有修改到暂存区
git add .
# 2. 将 public/*.html 加入忽略列表
echo "public/*.html" >> .gitignore
# 3. 从暂存区移除 public/*.html
git reset HEAD public/*.html
# 4. 添加 .gitignore 到暂存区
git add .gitignore
# 5. 查看状态确认
git status
# 6. 提交代码
git commit -m "fix(editor): 修复多列布局和联系表单渲染问题"
# 7. 推送到远程仓库
git push origin main
```