Files
2026-05-17 12:01:15 +08:00

25 lines
681 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 项目规则
## Git 仓库信息
| 项目 | 远程地址 | 分支 |
|------|---------|------|
| 主仓库 (miniapp-api) | `https://git.dxz99wyr.cn/Superuser/miniapp-api.git` | master |
| miniapp 子模块 | `https://git.dxz99wyr.cn/Superuser/miniapp-web.git` | master |
| backend 子模块 | backend 目录 | - |
## Git 凭据
- 用户名: `Superuser`
- 密码: `Admin@123`
- 凭据已存入 git credential store,无需手动输入
## Git 推送
- **只推送 miniapp-api 主仓库**,不要推送子模块仓库(miniapp-web、backend
- 推送时需要关闭 SSL 验证(服务器 SSL 证书问题):
```bash
git -c http.sslVerify=false push origin master
```